API Panel.PCloud.Create

From Flowcode Help
Revision as of 20:14, 25 June 2013 by JonnyW (talk | contribs) (XML import of Point Cloud API)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigationJump to search


<sidebar>API contents</sidebar> Creates a new point cloud tied to a position handle

Class hierarchy

Panel

PCloud
Create

Parameters

HANDLE Pos

The position to display the cloud at

HANDLE Mode

The appearance of the points
Typical values for this parameter:
Name Description
Mode_Point Displays cloud as points
Mode_Line Displays cloud as joined lines
Mode_Solid Displays cloud as a solid surface

ULONG RGBA

The default colour of the points


Return value

HANDLE

No additional information


Detailed description

No additional information


Examples

Calling in a calculation

  • Declare a variable 'result' of type HANDLE
  • Add to a calculation icon:
    result = ::Panel.PCloud.Create(pos, ::Panel.PCloud.Mode_Point, rgba)

No additional examples