ArcGIS Pro 3.7 API Reference Guide
ArcGIS.Core.Data.Analyst3D Namespace / TinNode Class / Coordinate3D Property
Example

In This Topic
    Coordinate3D Property (TinNode)
    In This Topic
    Gets a ArcGIS.Core.Geometry.Coordinate3D structure with the X, Y, and Z values. This method must be called on the MCT. Use QueuedTask.Run.
    Syntax
    Public ReadOnly Property Coordinate3D As Coordinate3D
    public Coordinate3D Coordinate3D {get;}
    Example
    TIN Nodes
    {
      // is the node "inside"
      var isInsideNode = node.IsInsideDataArea;
    
      // get all other nodes connected to "node" 
      IReadOnlyList<ArcGIS.Core.Data.Analyst3D.TinNode> adjNodes = node.GetAdjacentNodes();
    
      // get all edges that share "node" as a from node. 
      IReadOnlyList<ArcGIS.Core.Data.Analyst3D.TinEdge> edges = node.GetIncidentEdges();
    
      // get all triangles that share "node"
      IReadOnlyList<ArcGIS.Core.Data.Analyst3D.TinTriangle> triangles = node.GetIncidentTriangles();
    }
    Requirements

    Target Platforms: Windows 11 Home, Pro, Enterprise (64 bit)

    ArcGIS Pro version: 3.2 or higher.
    See Also