Interface ITriangleFace
A face in a triangulated surface.
See Glossary
Namespace: Oasys.AdSec.Mesh
Assembly: AdSec_API_IDL.dll
Syntax
public interface ITriangleFace
Remarks
Contains three vertex indices. A list of vertices that the indices refer to are typically provided along with the faces (e.g. in ILoadSurface).
Properties
Vertex1
The index of the first vertex.
Declaration
int Vertex1 { get; }
Property Value
Type | Description |
---|---|
System.Int32 |
Vertex2
The index of the second vertex.
Declaration
int Vertex2 { get; }
Property Value
Type | Description |
---|---|
System.Int32 |
Vertex3
The index of the third vertex.
Declaration
int Vertex3 { get; }
Property Value
Type | Description |
---|---|
System.Int32 |