IndexTriangle Class

Defines a triangle using vertex indices.
Public Class IndexTriangle 
Inherits IndexLine 
Implements IEquatable(Of IndexTriangle)
This language is not supported or no code example is available.
public class IndexTriangle : IndexLine
IEquatable<IndexTriangle>
This language is not supported or no code example is available.
Name Description
Protected constructor IndexTriangle(IndexTriangle)
Public constructor IndexTriangle() Empty constructor.
Public constructor IndexTriangle(int, int, int) Standard constructor.
Top
Name Description
Public property Item(int) Gets or sets the element at the specified index.
Top
Methods
 
Name Description
Public method Clone() Creates a deep copy of this IndexTriangle.
Public method ConvertToSurrogate()
Public method Equals(IndexTriangle)
Public method Equals(object)
Protected method Finalize (inherited from Object).
Public method GetHashCode()
Public method GetThirdVertex(int, int)
Public method GetType (inherited from Object).
Protected method MemberwiseClone (inherited from Object).
Public method Quality(IList<Point3D>) Computes the triangle quality.
Public method ReplaceVertexIndex(int, int)
Public method ToArray() Returns an array of triangle's vertex indices.
Public method ToString()
Top
Name Description
Operator Static Equality
Operator Static Inequality
Top
Fields
 
Name Description
Public field V1 First vertex index. (inherited from IndexLine).
Public field V2 Second vertex index. (inherited from IndexLine).
Public field V3 Third verted index.
Top

.NET Framework

Supported in: 4.7.2

In this article

Definition