struct PlyElement

Overview

struct PlyElement
{
    // fields

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

    // construction

    PlyElement();
};