  | CTINGetTriangle Method  | 
 Get the locations of the vertices of a specific triangle
 
    Namespace: 
   Geosoft.Desktop.GXNetX
    Assembly:
   geosoft.desktop.gxnetx (in geosoft.desktop.gxnetx.dll) Version: 2025.1.0.25
Syntaxpublic void GetTriangle(
	int index,
	ref double x0,
	ref double y0,
	ref double x1,
	ref double y1,
	ref double x2,
	ref double y2
)
public void GetTriangle(
	int index,
	ref double x0,
	ref double y0,
	ref double x1,
	ref double y1,
	ref double x2,
	ref double y2
)
Public Sub GetTriangle ( 
	index As Integer,
	ByRef x0 As Double,
	ByRef y0 As Double,
	ByRef x1 As Double,
	ByRef y1 As Double,
	ByRef x2 As Double,
	ByRef y2 As Double
)
Public Sub GetTriangle ( 
	index As Integer,
	ByRef x0 As Double,
	ByRef y0 As Double,
	ByRef x1 As Double,
	ByRef y1 As Double,
	ByRef x2 As Double,
	ByRef y2 As Double
)
public:
void GetTriangle(
	int index, 
	double% x0, 
	double% y0, 
	double% x1, 
	double% y1, 
	double% x2, 
	double% y2
)
public:
void GetTriangle(
	int index, 
	double% x0, 
	double% y0, 
	double% x1, 
	double% y1, 
	double% x2, 
	double% y2
)
member GetTriangle : 
        index : int * 
        x0 : float byref * 
        y0 : float byref * 
        x1 : float byref * 
        y1 : float byref * 
        x2 : float byref * 
        y2 : float byref -> unit 
member GetTriangle : 
        index : int * 
        x0 : float byref * 
        y0 : float byref * 
        x1 : float byref * 
        y1 : float byref * 
        x2 : float byref * 
        y2 : float byref -> unit 
Parameters
- index
 - Type: SystemInt32
Triangle index [0...N-1] - x0
 - Type: SystemDouble
X0 - y0
 - Type: SystemDouble
Y0 - x1
 - Type: SystemDouble
X1 - y1
 - Type: SystemDouble
Y1 - x2
 - Type: SystemDouble
X2 - y2
 - Type: SystemDouble
Y2 
See Also