Defines the positions and colors of points in
a point batch. The points are rendered in the primitive's Reference
Frame. renderPassHint is provided for efficiency.
| [Visual Basic .NET] |
|---|
Public Sub SetWithColorsAndRenderPass( _
ByRef Positions As System.Array, _
ByRef Colors As System.Array, _
ByVal RenderPassHint As AgEStkGraphicsRenderPassHint _
)
|
| [C#] |
|---|
public void SetWithColorsAndRenderPass(
|
| [Managed C++] |
|---|
public: void SetWithColorsAndRenderPass(
|
| [Java] |
|---|
public setWithColorsAndRenderPass(
|
| [Unmanaged C++] |
|---|
public: HRESULT SetWithColorsAndRenderPass(
|
- Positions
- An array containing new positions (in the order x, y, z) for the point batch.
- Colors
- An array containing the numeric representation of colors for
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
ToArgbmethod and casting the result as an unsigned integer. - RenderPassHint
-
Member Value Description eStkGraphicsRenderPassHintOpaque 0 The collection of Color contains only opaque colors. This implies that each color's alpha component is 255. eStkGraphicsRenderPassHintTranslucent 1 The collection of Color contains translucent colors. This implies that at least one color has an alpha component that is not 255. eStkGraphicsRenderPassHintUnknown 2 It is unknown if the collection of Color contains opaque or translucent colors.
Calling this method with a renderPassHint of
Unknown is equivalent to calling Set
with just positions and colors. When a more specific renderPassHint
is used, this method can be more efficient.
See Set for a full discussion.
Shows the format of
the Positions, Colors and Indices parameters when updating a point
batch.
| [C#] | Copy Code
|
|
|---|---|---|
|
||
Shows the format of
the Positions, Colors and Indices parameters when updating a point
batch.
| [Visual Basic .NET] | Copy Code
|
|
|---|---|---|
|
||