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
Methods
 
Name Description
Public method Clone() Creates a deep copy of this IndexTriangle.
Public method ConvertToSurrogate()
Public method Equals(IndexTriangle)
Public method Equals(object) Determines whether the specified object is equal to the current object.
Protected method Finalize Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (inherited from Object).
Public method GetHashCode() Serves as the default hash function.
Public method GetThirdVertex(int, int)
Public method GetType Gets the Type of the current instance. (inherited from Object).
Public method GetXElement()
Protected method MemberwiseClone Creates a shallow copy of the current Object. (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() Returns a string that represents the current object.
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.5, 4.6, 4.7

In this article

Definition