API Panel.PCloud.Create
From Flowcode Help
Jump to navigationJump to search
<sidebar>API contents</sidebar>
Creates a new point cloud tied to a position handle
Contents
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
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