Hide menu
Loading...
Searching...
No Matches

Describes drawing elements composed of 2D points. More...

Inheritance diagram for cadex.ModelData.PointSet:
cadex.ModelData.MeshShape cadex.BaseObject

Public Member Functions

 PointSet (global::System.IntPtr cPtr, bool cMemoryOwn)
 
 PointSet (cadex.Collections.PointList thePoints)
 
void AddPoint (cadex.Geom.Point thePoint)
 
void AddPoints (cadex.Collections.PointList thePoints)
 Adds points into a point set.
 
cadex.Geom.Point Point (uint theIndex)
 
uint NumberOfPoints ()
 
- Public Member Functions inherited from cadex.ModelData.MeshShape
 MeshShape (global::System.IntPtr cPtr, bool cMemoryOwn)
 
- Public Member Functions inherited from cadex.BaseObject
 BaseObject (global::System.IntPtr cPtr, bool cMemoryOwn)
 
void Dispose ()
 
bool IsNull ()
 
ulong Id ()
 Return unique identifier of public object.
 
bool IsEqual (cadex.BaseObject theObj)
 
override int GetHashCode ()
 
override bool Equals (System.Object o)
 

Static Public Member Functions

static new bool CompareType (cadex.BaseObject theObject)
 
static cadex.ModelData.PointSet Cast (cadex.ModelData.MeshShape theBase)
 
- Static Public Member Functions inherited from cadex.ModelData.MeshShape
static bool CompareType (cadex.BaseObject theObject)
 Check the type of object. Returns true if the specified object is this class type.
 
static cadex.ModelData.MeshShape Cast (cadex.BaseObject theBase)
 

Protected Member Functions

override void Dispose (bool disposing)
 

Detailed Description

Describes drawing elements composed of 2D points.

Defines a polygonal shape consisting of individual points.

This geometric element encapsulates the portion of the view's geometry described with 2D points.

Examples
exploring/mesh/Program.cs, and exploring/mesh/main.cxx.

Member Function Documentation

◆ AddPoint()

void cadex.ModelData.PointSet.AddPoint ( cadex.Geom.Point thePoint)
inline

Adds the point to the element. Adds a point into a point set.

◆ Dispose()

override void cadex.ModelData.PointSet.Dispose ( bool disposing)
inlineprotectedvirtual

Reimplemented from cadex.ModelData.MeshShape.

◆ NumberOfPoints()

uint cadex.ModelData.PointSet.NumberOfPoints ( )
inline

Returns the number of points currently composing the element. Returns a number of points in point set.

Examples
exploring/mesh/Program.cs, and exploring/mesh/main.cxx.

◆ Point()

cadex.Geom.Point cadex.ModelData.PointSet.Point ( uint theIndex)
inline

Returns the specified point of the element. Returns the point at position theIndex in point set.

Examples
exploring/mesh/Program.cs, and exploring/mesh/main.cxx.