Updates a subset of positions and/or colors in a polyline.
[Visual Basic .NET] |
---|
Public Sub SetPartialWithColorsIndicesOrderAndRenderPassHint( _ 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 SetPartialWithColorsIndicesOrderAndRenderPassHint( System.Array Positions, System.Array Colors, System.Array Indices, AgEStkGraphicsIndicesOrderHint IndicesOrderHint, AgEStkGraphicsRenderPassHint RenderPassHint ); |
[Managed C++] |
---|
public: void SetPartialWithColorsIndicesOrderAndRenderPassHint( System::Array ^ Positions, System::Array ^ Colors, System::Array ^ Indices, AgEStkGraphicsIndicesOrderHint IndicesOrderHint, AgEStkGraphicsRenderPassHint RenderPassHint ); |
[Java] |
---|
public void setPartialWithColorsIndicesOrderAndRenderPassHint( VariantArray Positions, VariantArray Colors, VariantArray Indices, AgEStkGraphicsIndicesOrderHint IndicesOrderHint, AgEStkGraphicsRenderPassHint RenderPassHint ); |
[Unmanaged C++] |
---|
public: HRESULT SetPartialWithColorsIndicesOrderAndRenderPassHint( SAFEARRAY * * Positions, SAFEARRAY * * Colors, SAFEARRAY * * Indices, AgEStkGraphicsIndicesOrderHint IndicesOrderHint, AgEStkGraphicsRenderPassHint RenderPassHint ); |
- Positions
- An array containing positions (in the order x, y, z) used to update a subset of positions in the polyline.
- Colors
- An array containing the numeric representation of the color used to update a subset of colors in the polyline. 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
IAgStkGraphicsPolylinePrimitive Interface | Dynamic Updates Overview | Set Hint Performance Overview
Shows the format of the Positions, Colors and Indices parameters when updating a polyline primitive.
[C#] | ||
---|---|---|
|
Shows the format of the Positions, Colors and Indices parameters when updating a polyline primitive.
[Visual Basic .NET] | ||
---|---|---|
|