Changeset View
Changeset View
Standalone View
Standalone View
source/blender/collada/collada.h
| Show First 20 Lines • Show All 42 Lines • ▼ Show 20 Lines | |||||
| typedef enum BC_export_transformation_type { | typedef enum BC_export_transformation_type { | ||||
| BC_TRANSFORMATION_TYPE_MATRIX, | BC_TRANSFORMATION_TYPE_MATRIX, | ||||
| BC_TRANSFORMATION_TYPE_TRANSROTLOC | BC_TRANSFORMATION_TYPE_TRANSROTLOC | ||||
| } BC_export_transformation_type; | } BC_export_transformation_type; | ||||
| struct bContext; | struct bContext; | ||||
| struct Scene; | struct Scene; | ||||
| struct SceneLayer; | struct ViewLayer; | ||||
| struct EvaluationContext; | struct EvaluationContext; | ||||
| /* | /* | ||||
| * both return 1 on success, 0 on error | * both return 1 on success, 0 on error | ||||
| */ | */ | ||||
| int collada_import(struct bContext *C, | int collada_import(struct bContext *C, | ||||
| const char *filepath, | const char *filepath, | ||||
| int import_units, | int import_units, | ||||
| int find_chains, | int find_chains, | ||||
| int auto_connect, | int auto_connect, | ||||
| int fix_orientation, | int fix_orientation, | ||||
| int min_chain_length, | int min_chain_length, | ||||
| int keep_bind_info); | int keep_bind_info); | ||||
| int collada_export(const struct EvaluationContext *eval_ctx, | int collada_export(const struct EvaluationContext *eval_ctx, | ||||
| struct Scene *sce, | struct Scene *sce, | ||||
| struct SceneLayer *scene_layer, | struct ViewLayer *view_layer, | ||||
| const char *filepath, | const char *filepath, | ||||
| int apply_modifiers, | int apply_modifiers, | ||||
| BC_export_mesh_type export_mesh_type, | BC_export_mesh_type export_mesh_type, | ||||
| int selected, | int selected, | ||||
| int include_children, | int include_children, | ||||
| int include_armatures, | int include_armatures, | ||||
| int include_shapekeys, | int include_shapekeys, | ||||
| Show All 21 Lines | |||||