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

From Flowcode Help
Jump to navigationJump to search
(XML import of API documentation)
(XML import)
 
Line 1: Line 1:
 
 
 
<sidebar>API Contents</sidebar>
 
<sidebar>API Contents</sidebar>
 
Sets the X,Y,Z point lists in a height-map grid
 
Sets the X,Y,Z point lists in a height-map grid

Latest revision as of 15:57, 16 January 2014

<sidebar>API Contents</sidebar> Sets the X,Y,Z point lists in a height-map grid

Class hierarchy

Panel

PCloud
SetGrid

Parameters

HANDLE PCloud

The handle to the cloud to set the points of

FLOAT[] XYZ

The array of (X,Y,Z) coordinates to use, arrayed as a grid

ULONG GridWidth

The width of the grid to calculate

ULONG Elements

The number of (X,Y,Z) points to set


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.SetGrid(pcloud, _arrayxyz, gridwidth, elements)

No additional examples