Changeset View
Changeset View
Standalone View
Standalone View
source/blender/makesdna/DNA_object_force.h
| Show First 20 Lines • Show All 333 Lines • ▼ Show 20 Lines | typedef struct SoftBody { | ||||
| struct SBScratch *scratch; /* scratch pad/cache on live time not saved in file */ | struct SBScratch *scratch; /* scratch pad/cache on live time not saved in file */ | ||||
| float shearstiff; | float shearstiff; | ||||
| float inpush; | float inpush; | ||||
| struct PointCache *pointcache; | struct PointCache *pointcache; | ||||
| struct ListBase ptcaches; | struct ListBase ptcaches; | ||||
| struct Group *collision_group; | |||||
| struct EffectorWeights *effector_weights; | struct EffectorWeights *effector_weights; | ||||
| /* reverse esimated obmatrix .. no need to store in blend file .. how ever who cares */ | /* reverse esimated obmatrix .. no need to store in blend file .. how ever who cares */ | ||||
| float lcom[3]; | float lcom[3]; | ||||
| float lrot[3][3]; | float lrot[3][3]; | ||||
| float lscale[3][3]; | float lscale[3][3]; | ||||
| int last_frame; | int last_frame; | ||||
| } SoftBody; | } SoftBody; | ||||
| ▲ Show 20 Lines • Show All 105 Lines • Show Last 20 Lines | |||||