Updates a subset of positions and/or colors in a point batch.
[Visual Basic .NET] |
---|
Public Sub SetPartialWithColorsIndicesOrderAndRenderPass( _ ByVal Positions As System.Array, _ ByVal Colors As System.Array, _ ByVal Indices As System.Array, _ ByVal IndicesOrderHint As AgEStkGraphicsIndicesOrderHint, _ ByVal RenderPassHint As AgEStkGraphicsRenderPassHint _ ) As |
[C#] |
---|
public void SetPartialWithColorsIndicesOrderAndRenderPass( System.Array Positions, System.Array Colors, System.Array Indices, AgEStkGraphicsIndicesOrderHint IndicesOrderHint, AgEStkGraphicsRenderPassHint RenderPassHint ); |
[Managed C++] |
---|
public: void SetPartialWithColorsIndicesOrderAndRenderPass( System::Array ^ Positions, System::Array ^ Colors, System::Array ^ Indices, AgEStkGraphicsIndicesOrderHint IndicesOrderHint, AgEStkGraphicsRenderPassHint RenderPassHint ); |
[Java] |
---|
public void setPartialWithColorsIndicesOrderAndRenderPass( VariantArray Positions, VariantArray Colors, VariantArray Indices, AgEStkGraphicsIndicesOrderHint IndicesOrderHint, AgEStkGraphicsRenderPassHint RenderPassHint ); |
[Unmanaged C++] |
---|
public: HRESULT SetPartialWithColorsIndicesOrderAndRenderPass( SAFEARRAY * * Positions, SAFEARRAY * * Colors, SAFEARRAY * * Indices, AgEStkGraphicsIndicesOrderHint IndicesOrderHint, AgEStkGraphicsRenderPassHint RenderPassHint ); |
- Positions
- An array of new positions (in the order x, y, z) used to update a subset of positions in the point batch.
- Colors
- An array containing the numeric representation of the color used to update a subset of colors in the point batch. There must be one color for each position in positions. In .NET a Color should be translated to a number by calling its
ToArgb
method and casting the result as an unsigned integer. - Indices
- An array of integers containing the indices into positions. A set of x, y, and z elements is considered a single index.
- IndicesOrderHint
- RenderPassHint
IAgStkGraphicsPointBatchPrimitive Interface | Dynamic Updates Overview | Set Hint Performance Overview
Shows the format of the Positions, Colors and Indices parameters when updating a point batch.
[C#] | ||
---|---|---|
|
Shows the format of the Positions, Colors and Indices parameters when updating a point batch.
[Visual Basic .NET] | ||
---|---|---|
|