Difference between revisions of "API Panel.PCloud.SetGridPoint"
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> | ||
Given an XY on the grid, sets the vertex value at that point | Given an XY on the grid, sets the vertex value at that point |
Revision as of 15:57, 16 January 2014
<sidebar>API Contents</sidebar> Given an XY on the grid, sets the vertex value at that point
Contents
Parameters
HANDLE PCloud
- The handle to the cloud to adjust the colors of
LONG Gx
- The X coordinate on the grid
LONG Gy
- The Y coordinate on the grid
FLOAT Px
- The X of the vertex to set the point to
FLOAT Py
- The Y of the vertex to set the point to
FLOAT Pz
- The Z of the vertex to set the point to
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.SetGridPoint(pcloud, gx, gy, px, py, pz)
No additional examples