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:
authorStefan Werner <stefan.werner@tangent-animation.com>2021-08-02 10:28:54 +0300
committerStefan Werner <stefan.werner@tangent-animation.com>2021-08-02 10:28:54 +0300
commit34e8d79c3edbc58fd242cec0c1f2bed4e43855af (patch)
tree36c70e63515af2bd8ea840102493028faec37971 /source/blender/makesdna/DNA_constraint_types.h
parent465fb31ed275618ec71e4925ab94bd4a9b077a12 (diff)
parent48722e8971133dbe14ecc6825a2451637df77eab (diff)
Merge branch 'master' into cycles_texture_cache
Diffstat (limited to 'source/blender/makesdna/DNA_constraint_types.h')
-rw-r--r--source/blender/makesdna/DNA_constraint_types.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/source/blender/makesdna/DNA_constraint_types.h b/source/blender/makesdna/DNA_constraint_types.h
index 34f50b23c77..a77fbc9e45e 100644
--- a/source/blender/makesdna/DNA_constraint_types.h
+++ b/source/blender/makesdna/DNA_constraint_types.h
@@ -425,7 +425,7 @@ typedef struct bRigidBodyJointConstraint {
typedef struct bClampToConstraint {
/** 'target' must be a curve. */
struct Object *tar;
- /** Which axis/plane to compare owner's location on . */
+ /** Which axis/plane to compare owner's location on. */
int flag;
/** For legacy reasons, this is flag2. used for any extra settings. */
int flag2;
@@ -474,7 +474,7 @@ typedef struct bTransformConstraint {
float from_min[3];
/** To map on to to_min/max range. */
float from_max[3];
- /** Range of motion on owner caused by target . */
+ /** Range of motion on owner caused by target. */
float to_min[3];
float to_max[3];
@@ -482,7 +482,7 @@ typedef struct bTransformConstraint {
float from_min_rot[3];
/** To map on to to_min/max range. */
float from_max_rot[3];
- /** Range of motion on owner caused by target . */
+ /** Range of motion on owner caused by target. */
float to_min_rot[3];
float to_max_rot[3];
@@ -490,7 +490,7 @@ typedef struct bTransformConstraint {
float from_min_scale[3];
/** To map on to to_min/max range. */
float from_max_scale[3];
- /** Range of motion on owner caused by target . */
+ /** Range of motion on owner caused by target. */
float to_min_scale[3];
float to_max_scale[3];
} bTransformConstraint;
@@ -1102,7 +1102,7 @@ typedef enum eRotLimit_Flags {
/* distance limit constraint */
/* bDistLimitConstraint->flag */
typedef enum eDistLimit_Flag {
- /* "soft" cushion effect when reaching the limit sphere */ // NOT IMPLEMENTED!
+ /* "soft" cushion effect when reaching the limit sphere */ /* NOT IMPLEMENTED! */
LIMITDIST_USESOFT = (1 << 0),
/* as for all Limit constraints - allow to be used during transform? */
LIMITDIST_TRANSFORM = (1 << 1),