Skip to content

Documentation or feature request. #763

@deathly809

Description

@deathly809

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} };

Metadata

Metadata

Assignees

No one assigned

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions