GARIndexTriangle
Struct to hold indices that represent a triangle.
Triangle indices are in counter clockwise winding order.
Summary
Public attributes
|
indices[3]
|
uint32_t
The three indices that make up a triangle.
|
Public attributes
indices
uint32_t GARIndexTriangle::indices[3]
The three indices that make up a triangle.
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2025-02-28 UTC.
[null,null,["Last updated 2025-02-28 UTC."],[[["`GARIndexTriangle` is a structure designed to store the indices defining a triangle."],["The `indices` attribute within the structure is a 3-element array of `uint32_t` values, representing the vertices of the triangle in counter-clockwise order."]]],["The `GARIndexTriangle` struct stores the three indices of a triangle, which are represented as `uint32_t` values. These indices, accessible via the `indices` attribute, define the triangle's vertices and are arranged in counter-clockwise winding order. The `indices` attribute is an array of size 3, directly containing these index values.\n"]]