-
-
Notifications
You must be signed in to change notification settings - Fork 7.3k
Closed
Labels
Description
Is it possible to flatten fixed sized arrays to a single array?
Serialize
std::vector<Vec3> points = {{1,2,3} , {4,5,6} };
{
"points" : [
1,
2,
3,
4,
5,
6
]
}
Deserialize
{
"points" : [
1,
2,
3,
4,
5,
6
]
}
std::vector<Vec3> points = { {1,2,3} {4,5,6} };
Reactions are currently unavailable