Changeset View
Changeset View
Standalone View
Standalone View
source/blender/editors/transform/transform.c
| Show First 20 Lines • Show All 1,993 Lines • ▼ Show 20 Lines | static void drawTransformView(const struct bContext *C, ARegion *UNUSED(ar), void *arg) | ||||
| drawConstraint(t); | drawConstraint(t); | ||||
| drawPropCircle(C, t); | drawPropCircle(C, t); | ||||
| drawSnapping(C, t); | drawSnapping(C, t); | ||||
| /* edge slide, vert slide */ | /* edge slide, vert slide */ | ||||
| drawEdgeSlide(t); | drawEdgeSlide(t); | ||||
| drawVertSlide(t); | drawVertSlide(t); | ||||
| /* Rotation */ | |||||
| drawDial3d(t); | |||||
| } | } | ||||
| /* just draw a little warning message in the top-right corner of the viewport to warn that autokeying is enabled */ | /* just draw a little warning message in the top-right corner of the viewport to warn that autokeying is enabled */ | ||||
| static void drawAutoKeyWarning(TransInfo *UNUSED(t), ARegion *ar) | static void drawAutoKeyWarning(TransInfo *UNUSED(t), ARegion *ar) | ||||
| { | { | ||||
| rcti rect; | rcti rect; | ||||
| const char *printable = IFACE_("Auto Keying On"); | const char *printable = IFACE_("Auto Keying On"); | ||||
| float printable_size[2]; | float printable_size[2]; | ||||
| ▲ Show 20 Lines • Show All 7,156 Lines • Show Last 20 Lines | |||||