Difference between revisions of "API Panel.PCloud.Create"

From Flowcode Help
Jump to navigationJump to search
(XML import of Point Cloud API)
(No difference)

Revision as of 20:14, 25 June 2013


<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