Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'source/blender/editors/transform/transform_data.h')
-rw-r--r--source/blender/editors/transform/transform_data.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/source/blender/editors/transform/transform_data.h b/source/blender/editors/transform/transform_data.h
index b59197fcd39..5b01433c96b 100644
--- a/source/blender/editors/transform/transform_data.h
+++ b/source/blender/editors/transform/transform_data.h
@@ -122,11 +122,11 @@ typedef struct TransDataCurveHandleFlags {
typedef struct TransData {
TRANSDATABASIC;
- /** Distance needed to affect element (for Proportionnal Editing). */
+ /** Distance needed to affect element (for Proportional Editing). */
float dist;
- /** Distance to the nearest element (for Proportionnal Editing). */
+ /** Distance to the nearest element (for Proportional Editing). */
float rdist;
- /** Factor of the transformation (for Proportionnal Editing). */
+ /** Factor of the transformation (for Proportional Editing). */
float factor;
/** Value pointer for special transforms. */
float *val;
@@ -141,11 +141,11 @@ typedef struct TransData {
struct Object *ob;
/** For objects/bones, the first constraint in its constraint stack. */
struct bConstraint *con;
- /** For objects, poses. 1 single malloc per TransInfo! */
+ /** For objects, poses. 1 single allocation per #TransInfo! */
TransDataExtension *ext;
/** for curves, stores handle flags for modification/cancel. */
TransDataCurveHandleFlags *hdata;
- /** If set, copy of Object or PoseChannel protection. */
+ /** If set, copy of Object or #bPoseChannel protection. */
short protectflag;
} TransData;