Changeset View
Changeset View
Standalone View
Standalone View
source/blender/makesdna/DNA_object_types.h
| Show All 37 Lines | |||||
| #endif | #endif | ||||
| struct AnimData; | struct AnimData; | ||||
| struct BoundBox; | struct BoundBox; | ||||
| struct DerivedMesh; | struct DerivedMesh; | ||||
| struct FluidsimSettings; | struct FluidsimSettings; | ||||
| struct GpencilBatchCache; | struct GpencilBatchCache; | ||||
| struct Ipo; | struct Ipo; | ||||
| struct Mesh; | |||||
| struct Material; | struct Material; | ||||
| struct Object; | struct Object; | ||||
| struct PartDeflect; | struct PartDeflect; | ||||
| struct ParticleSystem; | struct ParticleSystem; | ||||
| struct Path; | struct Path; | ||||
| struct RigidBodyOb; | struct RigidBodyOb; | ||||
| struct SculptSession; | struct SculptSession; | ||||
| struct SoftBody; | struct SoftBody; | ||||
| ▲ Show 20 Lines • Show All 101 Lines • ▼ Show 20 Lines | typedef struct Object_Runtime { | ||||
| */ | */ | ||||
| struct Mesh *mesh_eval; | struct Mesh *mesh_eval; | ||||
| /** | /** | ||||
| * Mesh structure created during object evaluation. | * Mesh structure created during object evaluation. | ||||
| * It has deforemation only modifiers applied on it. | * It has deforemation only modifiers applied on it. | ||||
| */ | */ | ||||
| struct Mesh *mesh_deform_eval; | struct Mesh *mesh_deform_eval; | ||||
| /* This is a mesh representation of corresponding object. | |||||
| * It created when Python calls `object.to_mesh()`. */ | |||||
| struct Mesh *object_as_temp_mesh; | |||||
| /** Runtime evaluated curve-specific data, not stored in the file. */ | /** Runtime evaluated curve-specific data, not stored in the file. */ | ||||
| struct CurveCache *curve_cache; | struct CurveCache *curve_cache; | ||||
| /** Runtime grease pencil drawing data */ | /** Runtime grease pencil drawing data */ | ||||
| struct GpencilBatchCache *gpencil_cache; | struct GpencilBatchCache *gpencil_cache; | ||||
| } Object_Runtime; | } Object_Runtime; | ||||
| typedef struct Object { | typedef struct Object { | ||||
| ▲ Show 20 Lines • Show All 513 Lines • Show Last 20 Lines | |||||