Changeset View
Changeset View
Standalone View
Standalone View
source/blender/io/alembic/intern/abc_customdata.h
| Show First 20 Lines • Show All 62 Lines • ▼ Show 20 Lines | struct CDStreamConfig { | ||||
| Mesh *mesh; | Mesh *mesh; | ||||
| void *(*add_customdata_cb)(Mesh *mesh, const char *name, int data_type); | void *(*add_customdata_cb)(Mesh *mesh, const char *name, int data_type); | ||||
| float weight; | float weight; | ||||
| float time; | float time; | ||||
| Alembic::AbcGeom::index_t index; | Alembic::AbcGeom::index_t index; | ||||
| Alembic::AbcGeom::index_t ceil_index; | Alembic::AbcGeom::index_t ceil_index; | ||||
| const char **modifier_error_message; | |||||
| CDStreamConfig() | CDStreamConfig() | ||||
| : mloop(NULL), | : mloop(NULL), | ||||
| totloop(0), | totloop(0), | ||||
| mpoly(NULL), | mpoly(NULL), | ||||
| totpoly(0), | totpoly(0), | ||||
| totvert(0), | totvert(0), | ||||
| pack_uvs(false), | pack_uvs(false), | ||||
| mesh(NULL), | mesh(NULL), | ||||
| add_customdata_cb(NULL), | add_customdata_cb(NULL), | ||||
| weight(0.0f), | weight(0.0f), | ||||
| time(0.0f), | time(0.0f), | ||||
| index(0), | index(0), | ||||
| ceil_index(0) | ceil_index(0), | ||||
| modifier_error_message(NULL) | |||||
| { | { | ||||
| } | } | ||||
| }; | }; | ||||
| /* Get the UVs for the main UV property on a OSchema. | /* Get the UVs for the main UV property on a OSchema. | ||||
| * Returns the name of the UV layer. | * Returns the name of the UV layer. | ||||
| * | * | ||||
| * For now the active layer is used, maybe needs a better way to choose this. */ | * For now the active layer is used, maybe needs a better way to choose this. */ | ||||
| Show All 13 Lines | |||||