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
Add support for reading smoothing groups.
Just another index with length num_face_indices (aka number of faces of the mesh). Each entry is the number of the smoothing group that the face belongs to.
Another option is to have a Vec<Vec<u32>>. Where the second level represents the individual groups.
But that seems to be against the philosophy of this lib to store everything in flat buffers (e.g. one could also combine indices & num_face_indices into a single Vec<Vec<u32>>, otherwise).
The text was updated successfully, but these errors were encountered:
Add support for reading smoothing groups.
Just another index with length
num_face_indices
(aka number of faces of the mesh). Each entry is the number of the smoothing group that the face belongs to.Another option is to have a
Vec<Vec<u32>>
. Where the second level represents the individual groups.But that seems to be against the philosophy of this lib to store everything in flat buffers (e.g. one could also combine
indices
&num_face_indices
into a singleVec<Vec<u32>>
, otherwise).The text was updated successfully, but these errors were encountered: