Edit Geometry

xAddPointSet from file

Reads the coordinates of points from the given file and creates the named point set.

bool xAddPointSet (String sPointSetName, String sPointSetFile)

return

Returns True, if it succeeds.

Returns False, if it fails.

sPointSetName

Name of the point set

sPointSetFile

File path which contains point set coordinates data.

xAddPointSet

Creates the point set with given point coordinates and name.

bool xAddPointSet (String sPointSetName, List<float> pointArray)

return

Returns True, if it succeeds.

Returns False, if it fails.

sPointSetName

Name of the point set

pointArray

Coordinates of pointset.

xShowPointSet

Shows or Hides the named point set based on the given flag.

bool xShowPointSet (String sPointSetName, bool bShow)

return

Returns True, if it succeeds.

Returns False, if it fails.

sPointSetName

Name of the point set.

bShow

Display flag (ON/OFF).

xIsPointSetVisible

Gets the visibility of given pointset name.

bool xIsPointSetVisible (String sPointSetName)

return

Returns True, if it succeeds.

Returns False, if it fails.

sPointSetName

Name of the point set.

xSetPointSetColor

Sets RGB color to the given point set name.

bool xSetPointSetColor(String sPointSetName,float r, float g, float b)

return

Returns True, if it succeeds.

Returns False, if it fails.

sPointSetName

Name of the point set.

r

value of red color in the range (0,1).

g

value of green color in the range (0,1).

b

value of blue color in the range (0,1).