Difference between revisions of "API Panel.PCloud.Create"
(XML import) |
|||
(One intermediate revision by the same user not shown) | |||
Line 1: | Line 1: | ||
− | + | {| class="wikitable" style="width:60%; background-color:#FFFFFF;" | |
− | + | |- | |
− | + | | width="10%" align="center" style="background-color:#D8C9D8;" align="center" | [[File:Fc9-comp-macro.png]] | |
− | + | | width="90%" style="background-color:#D8C9D8; color:#4B008D;" | '''Create''' | |
− | === | + | |- |
− | [[ | + | | colspan="2" | Creates a new point cloud tied to a position handle |
− | : | + | |- |
− | :: | + | |- |
− | + | | width="10%" align="center" | [[File:Fc9-h32-icon.png]] - HANDLE | |
− | + | | width="90%" | Pos | |
− | + | |- | |
− | == | + | | colspan="2" | The position to display the cloud at |
− | [[ | + | |- |
− | + | | width="10%" align="center" | [[File:Fc9-u16-icon.png]] - UINT | |
− | + | | width="90%" | DrawMode | |
− | [[ | ||
− | |||
− | |||
− | |||
|- | |- | ||
− | + | | colspan="2" | The appearance of the points | |
− | |||
|- | |- | ||
− | | | + | | width="10%" align="center" | [[File:Fc9-u32-icon.png]] - ULONG |
− | | | + | | width="90%" | RGBA |
|- | |- | ||
− | | | + | | colspan="2" | The default colour of the points |
− | | | ||
|- | |- | ||
− | | | + | | width="10%" align="center" style="border-top: 2px solid #000;" | [[File:Fc9-h32-icon.png]] - HANDLE |
− | | | + | | width="90%" style="border-top: 2px solid #000;" | ''Return'' |
|} | |} | ||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
Line 65: | Line 50: | ||
* Declare a variable 'result' of type HANDLE | * Declare a variable 'result' of type HANDLE | ||
* Add to a calculation icon: <pre class="brush:[cpp]">result = ::Panel.PCloud.Create(pos, ::Panel.PCloud.Mode_Point, rgba)</pre> | * Add to a calculation icon: <pre class="brush:[cpp]">result = ::Panel.PCloud.Create(pos, ::Panel.PCloud.Mode_Point, rgba)</pre> | ||
− | |||
− |
Latest revision as of 11:54, 16 January 2023
Detailed description
A point cloud is a series of points that can represent a graph, shape or terrain in Flowcode. All the parameters passed to this function can be altered using specific calls.
Point clouds can either be rendered using a chain of points, or a grid of points. There is no difference when displaying with Mode_Point, but for other modes a chain will render each point as though it is connected to the last, where as a grid assumes a 2-dimensional map, and connects each point to the one above and to the right of it, breaking the sequence at the end of each row of the grid.
The Pos is a position handle that the point cloud will scale to. The range of a point cloud in any axis is -1 to 1. This means that, for example -1 can be considered far left, and 1 as far right. To automatically scale a point cloud to this range, use UnitScale.
The Pos will be tracked by default. This means that the point cloud will take the shape of the position, and if that position changes at any time, the point cloud will change with it. The SetPos allows this option to be explicitly set.
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)