Class TopoPoint3Hfr
Topological 3D point with Fraction<decimal> coordinates.
Maintains connectivity to adjacent lines and triangles.
Corresponds to C++ topo_point3_t.
public class TopoPoint3Hfr
- Inheritance
-
TopoPoint3Hfr
- Inherited Members
- Extension Methods
Fields
BackwardLines
Backward lines (lines ending at this point). Do not modify directly.
public readonly List<TopoLine3Hfr> BackwardLines
Field Value
ForwardLines
Forward lines (lines starting from this point). Do not modify directly.
public readonly List<TopoLine3Hfr> ForwardLines
Field Value
Position
The position in fraction coordinates.
public Vec3Hfr Position
Field Value
Tris
Triangles that contain this point. Do not modify directly.
public readonly List<TopoTri3Hfr> Tris
Field Value
Properties
IsIsolated
Whether the point is isolated (no forward lines).
public bool IsIsolated { get; }
Property Value
IsSeamless
Whether the point is seamless (all forward lines have a reversed line with a triangle).
public bool IsSeamless { get; }
Property Value
Methods
ToString()
Returns a string that represents the current object.
public override string ToString()
Returns
- string
A string that represents the current object.