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

From Flowcode Help
Jump to navigationJump to search
(XML import of API console/scope rename functions)
(XML import)
 
(2 intermediate revisions by the same user not shown)
Line 1: Line 1:
 
+
<sidebar>API Contents</sidebar>
 
+
Sets the rendering mode of the point cloud
<sidebar>API contents</sidebar>
 
Sets the RGB colour of the individual points in the cloud
 
  
 
<div style="width:25%; float:right" class="toc">
 
<div style="width:25%; float:right" class="toc">

Latest revision as of 15:57, 16 January 2014

<sidebar>API Contents</sidebar> Sets the rendering mode of the point cloud

Class hierarchy

Panel

PCloud
SetMode

Parameters

HANDLE PCloud

The handle to the cloud to adjust the graphics of

UINT DrawMode

The graphical mode to display the points with
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


Return value

This call does not return a value


Detailed description

No additional information


Examples

Calling in a calculation

  • Add to a calculation icon:
    ::Panel.PCloud.SetMode(pcloud, ::Panel.PCloud.Mode_Point)

No additional examples