Changeset View
Changeset View
Standalone View
Standalone View
source/blender/alembic/intern/abc_mesh.h
| Show First 20 Lines • Show All 104 Lines • ▼ Show 20 Lines | bool accepts_object_type(const Alembic::AbcCoreAbstract::ObjectHeader &alembic_header, | ||||
| const Object *const ob, | const Object *const ob, | ||||
| const char **err_str) const; | const char **err_str) const; | ||||
| void readObjectData(Main *bmain, const Alembic::Abc::ISampleSelector &sample_sel); | void readObjectData(Main *bmain, const Alembic::Abc::ISampleSelector &sample_sel); | ||||
| struct Mesh *read_mesh(struct Mesh *existing_mesh, | struct Mesh *read_mesh(struct Mesh *existing_mesh, | ||||
| const Alembic::Abc::ISampleSelector &sample_sel, | const Alembic::Abc::ISampleSelector &sample_sel, | ||||
| int read_flag, | int read_flag, | ||||
| const char **err_str); | const char **err_str); | ||||
| bool topology_changed(Mesh *existing_mesh, | |||||
| const Alembic::Abc::ISampleSelector &sample_sel) override; | |||||
| private: | private: | ||||
| void readFaceSetsSample(Main *bmain, | void readFaceSetsSample(Main *bmain, | ||||
| Mesh *mesh, | Mesh *mesh, | ||||
| const Alembic::AbcGeom::ISampleSelector &sample_sel); | const Alembic::AbcGeom::ISampleSelector &sample_sel); | ||||
| void assign_facesets_to_mpoly(const Alembic::Abc::ISampleSelector &sample_sel, | void assign_facesets_to_mpoly(const Alembic::Abc::ISampleSelector &sample_sel, | ||||
| MPoly *mpoly, | MPoly *mpoly, | ||||
| Show All 34 Lines | |||||