struct PlyElement

struct PlyElement
{
    //
fields

    string name;
    int num {0};
    int size {0};
    vector<PlyProperty> props;
    vector<char> store_prop;
    int other_offset = 0;
    int other_size = 0;

    // construction

    PlyElement();
};