Changeset View
Changeset View
Standalone View
Standalone View
source/blender/editors/transform/transform_conversions.c
| Show First 20 Lines • Show All 1,802 Lines • ▼ Show 20 Lines | static void createTransLatticeVerts(TransInfo *t) | ||||
| } | } | ||||
| } | } | ||||
| /* ******************* particle edit **************** */ | /* ******************* particle edit **************** */ | ||||
| static void createTransParticleVerts(bContext *C, TransInfo *t) | static void createTransParticleVerts(bContext *C, TransInfo *t) | ||||
| { | { | ||||
| TransData *td = NULL; | TransData *td = NULL; | ||||
| TransDataExtension *tx; | TransDataExtension *tx; | ||||
| Base *base = CTX_data_active_base(C); | ObjectBase *base = CTX_data_active_base(C); | ||||
| Object *ob = CTX_data_active_object(C); | Object *ob = CTX_data_active_object(C); | ||||
| ParticleEditSettings *pset = PE_settings(t->scene); | ParticleEditSettings *pset = PE_settings(t->scene); | ||||
| PTCacheEdit *edit = PE_get_current(t->scene, ob); | PTCacheEdit *edit = PE_get_current(t->scene, ob); | ||||
| ParticleSystem *psys = NULL; | ParticleSystem *psys = NULL; | ||||
| ParticleSystemModifierData *psmd = NULL; | ParticleSystemModifierData *psmd = NULL; | ||||
| PTCacheEditPoint *point; | PTCacheEditPoint *point; | ||||
| PTCacheEditKey *key; | PTCacheEditKey *key; | ||||
| float mat[4][4]; | float mat[4][4]; | ||||
| ▲ Show 20 Lines • Show All 6,292 Lines • Show Last 20 Lines | |||||