-
- Notifications
You must be signed in to change notification settings - Fork 252
Closed
Description
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.
Reactions are currently unavailable