Updates a subset of marker positions and/or per-marker parameters in a marker batch.
[Visual Basic .NET] |
---|
Public Sub SetPartialWithOptionalParametersIndicesOrderAndRenderPass( _ ByVal Positions As System.Array, _ ByVal OptionalParameters As IAgStkGraphicsMarkerBatchPrimitiveOptionalParameters, _ ByVal Indices As System.Array, _ ByVal IndicesOrderHint As AgEStkGraphicsIndicesOrderHint, _ ByVal RenderPassHint As AgEStkGraphicsRenderPassHint _ ) |
[C#] |
---|
public void SetPartialWithOptionalParametersIndicesOrderAndRenderPass( System.Array Positions, IAgStkGraphicsMarkerBatchPrimitiveOptionalParameters OptionalParameters, System.Array Indices, AgEStkGraphicsIndicesOrderHint IndicesOrderHint, AgEStkGraphicsRenderPassHint RenderPassHint ); |
[Managed C++] |
---|
public: void SetPartialWithOptionalParametersIndicesOrderAndRenderPass( System::Array ^ Positions, IAgStkGraphicsMarkerBatchPrimitiveOptionalParameters ^ OptionalParameters, System::Array ^ Indices, AgEStkGraphicsIndicesOrderHint IndicesOrderHint, AgEStkGraphicsRenderPassHint RenderPassHint ); |
[Unmanaged C++] |
---|
public: HRESULT SetPartialWithOptionalParametersIndicesOrderAndRenderPass( SAFEARRAY * * Positions, IAgStkGraphicsMarkerBatchPrimitiveOptionalParameters * OptionalParameters, SAFEARRAY * * Indices, AgEStkGraphicsIndicesOrderHint IndicesOrderHint, AgEStkGraphicsRenderPassHint RenderPassHint ); |
[Java] |
---|
public void setPartialWithOptionalParametersIndicesOrderAndRenderPass( AgSafeArray Positions, IAgStkGraphicsMarkerBatchPrimitiveOptionalParameters OptionalParameters, AgSafeArray Indices, AgEStkGraphicsIndicesOrderHint IndicesOrderHint, AgEStkGraphicsRenderPassHint RenderPassHint ); |
[Python - STK API ] |
---|
def SetPartialWithOptionalParametersIndicesOrderAndRenderPass(self, Positions:list, OptionalParameters:"IAgStkGraphicsMarkerBatchPrimitiveOptionalParameters", Indices:list, IndicesOrderHint:"AgEStkGraphicsIndicesOrderHint", RenderPassHint:"AgEStkGraphicsRenderPassHint") -> None: |
- Positions
- An array containing positions (in the order x, y, z) used to update a subset of positions in the marker batch.
- OptionalParameters
- Optional per-marker parameters corresponding to positions. Each per-marker parameter must have the same number of elements as positions.
- 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
- An optimization hint indicating the Render Pass implied by per-marker colors defined in optionalParameters.
Shows the format of the Colors, Positions and Indices parameters when updating a marker batch primitive.
[C#] | ||
---|---|---|
|
Shows the format of the Colors, Positions and Indices parameters when updating a marker batch primitive.
[Visual Basic .NET] | ||
---|---|---|
|