You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In this section of the user manual, the code example uses rp3d::TriangleVertexArray::VERTEX_FLOAT_TYPE and rp3d::TriangleVertexArray::INDEX_INTEGER_TYPE. However, using those expressions emits a compiler error because the enums are declared as enum class. They should be corrected to rp3d::TriangleVertexArray::VertexDataType::VERTEX_FLOAT_TYPE and rp3d::TriangleVertexArray::IndexDataType::INDEX_INTEGER_TYPE, respectively.
The text was updated successfully, but these errors were encountered:
In this section of the user manual, the code example uses
rp3d::TriangleVertexArray::VERTEX_FLOAT_TYPE
andrp3d::TriangleVertexArray::INDEX_INTEGER_TYPE
. However, using those expressions emits a compiler error because the enums are declared asenum class
. They should be corrected torp3d::TriangleVertexArray::VertexDataType::VERTEX_FLOAT_TYPE
andrp3d::TriangleVertexArray::IndexDataType::INDEX_INTEGER_TYPE
, respectively.The text was updated successfully, but these errors were encountered: