Jump to content

API Panel.PCloud.SetGrid: Difference between revisions

From Flowcode Help
JonnyW (talk | contribs)
XML import of Point Cloud API
 
JonnyW (talk | contribs)
XML import of API documentation
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



Revision as of 14:27, 9 August 2013


<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