Class IWrappedCurve3d
Simple sampled-curve wrapper type
Inheritance
IWrappedCurve3d
Namespace: g3
Assembly: cs.temp.dll.dll
Syntax
public class IWrappedCurve3d : ISampledCurve3d
Fields
VertexList
Declaration
public IList<Vector3d> VertexList
Field Value
Properties
Closed
Declaration
public bool Closed { get; set; }
Property Value
SegmentCount
Declaration
public int SegmentCount { get; }
Property Value
VertexCount
Declaration
public int VertexCount { get; }
Property Value
Vertices
Declaration
public IEnumerable<Vector3d> Vertices { get; }
Property Value
Methods
GetSegment(Int32)
Declaration
public Segment3d GetSegment(int iSegment)
Parameters
Type |
Name |
Description |
Int32 |
iSegment |
|
Returns
GetVertex(Int32)
Declaration
public Vector3d GetVertex(int i)
Parameters
Type |
Name |
Description |
Int32 |
i |
|
Returns
Implements