Updates a subset of positions and/or text in
a text batch.
[Visual Basic .NET] |
---|
Public Sub SetPartialWithIndicesOrder( _
ByRef Positions As System.Array, _
ByRef Text As System.Array, _
ByRef Indices As System.Array, _
ByVal IndicesOrderHint As AgEStkGraphicsIndicesOrderHint _
)
|
[C#] |
---|
public void SetPartialWithIndicesOrder(
|
[Managed C++] |
---|
public: void SetPartialWithIndicesOrder(
|
[Java] |
---|
public setPartialWithIndicesOrder(
|
[Unmanaged C++] |
---|
public: HRESULT SetPartialWithIndicesOrder(
|
- Positions
- An array containing positions (in the order x, y, z) used to update a subset of positions in the text batch.
- Text
- A collection of new text used to update a subset of text in the text batch.
- Indices
- An array of integers containing the indices into positions. A set of x, y, and z elements is considered a single index.
- IndicesOrderHint
-
Member Value Description eStkGraphicsIndicesOrderHintNotSorted 0 The indices
passed toSetPartial
are not sorted. Therefore, the primitive may sort them to improve performance of writing its geometry to video memory.eStkGraphicsIndicesOrderHintSortedAscending 1 The indices
passed toSetPartial
are sorted in ascending order. Therefore, the primitive does not need to sort them. It is recommended to only useSortedAscending
if it is easy and efficient for you to provide theindices
in ascending order. For example, do not use a standard sorting algorithm to sort your indices so you can useSortedAscending
. Instead useNotSorted
and let the primitive decide what is most efficient.
Shows the format of
the Text, Positions, Colors and Indices parameters when updating a
text batch primitive.
[C#] | Copy Code | |
---|---|---|
|
Shows the format of
the Text, Positions, Colors and Indices parameters when updating a
text batch primitive.
[Visual Basic .NET] | Copy Code | |
---|---|---|
|