Changeset View
Changeset View
Standalone View
Standalone View
source/blender/editors/transform/transform.c
| Context not available. | |||||
| Object *ob = t->poseobj; | Object *ob = t->poseobj; | ||||
| if (ob) mul_m4_v3(ob->obmat, vecrot); | if (ob) mul_m4_v3(ob->obmat, vecrot); | ||||
| } | } | ||||
| else if ((t->flag & T_POINTS) && (t->options & CTX_GPENCIL_STROKES)) { | |||||
| Object *ob = t->obedit; | |||||
| if ((ob) && (ob->type == OB_GPENCIL)) { | |||||
| mul_m4_v3(ob->obmat, vecrot); | |||||
| } | |||||
| } | |||||
| projectFloatViewEx(t, vecrot, cent, V3D_PROJ_TEST_CLIP_ZERO); | projectFloatViewEx(t, vecrot, cent, V3D_PROJ_TEST_CLIP_ZERO); | ||||
| Context not available. | |||||