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/makesdna/DNA_constraint_types.h')
-rw-r--r--source/blender/makesdna/DNA_constraint_types.h26
1 files changed, 13 insertions, 13 deletions
diff --git a/source/blender/makesdna/DNA_constraint_types.h b/source/blender/makesdna/DNA_constraint_types.h
index eaae82d0ccd..6557f35970d 100644
--- a/source/blender/makesdna/DNA_constraint_types.h
+++ b/source/blender/makesdna/DNA_constraint_types.h
@@ -745,7 +745,7 @@ typedef enum eConstraint_EulerOrder {
/* -------------------------------------- */
-/* bRotateLikeConstraint.flag */
+/** #bRotateLikeConstraint.flag */
typedef enum eCopyRotation_Flags {
ROTLIKE_X = (1 << 0),
ROTLIKE_Y = (1 << 1),
@@ -758,7 +758,7 @@ typedef enum eCopyRotation_Flags {
#endif
} eCopyRotation_Flags;
-/* bRotateLikeConstraint.mix_mode */
+/** #bRotateLikeConstraint.mix_mode */
typedef enum eCopyRotation_MixMode {
/* Replace rotation channel values. */
ROTLIKE_MIX_REPLACE = 0,
@@ -772,7 +772,7 @@ typedef enum eCopyRotation_MixMode {
ROTLIKE_MIX_AFTER = 4,
} eCopyRotation_MixMode;
-/* bLocateLikeConstraint.flag */
+/** #bLocateLikeConstraint.flag */
typedef enum eCopyLocation_Flags {
LOCLIKE_X = (1 << 0),
LOCLIKE_Y = (1 << 1),
@@ -785,7 +785,7 @@ typedef enum eCopyLocation_Flags {
LOCLIKE_OFFSET = (1 << 7),
} eCopyLocation_Flags;
-/* bSizeLikeConstraint.flag */
+/** #bSizeLikeConstraint.flag */
typedef enum eCopyScale_Flags {
SIZELIKE_X = (1 << 0),
SIZELIKE_Y = (1 << 1),
@@ -795,13 +795,13 @@ typedef enum eCopyScale_Flags {
SIZELIKE_UNIFORM = (1 << 5),
} eCopyScale_Flags;
-/* bTransLikeConstraint.flag */
+/** #bTransLikeConstraint.flag */
typedef enum eCopyTransforms_Flags {
/* Remove shear from the target matrix. */
TRANSLIKE_REMOVE_TARGET_SHEAR = (1 << 0),
} eCopyTransforms_Flags;
-/* bTransLikeConstraint.mix_mode */
+/** #bTransLikeConstraint.mix_mode */
typedef enum eCopyTransforms_MixMode {
/* Replace rotation channel values. */
TRANSLIKE_MIX_REPLACE = 0,
@@ -826,7 +826,7 @@ typedef enum eTransform_ToFrom {
TRANS_SCALE = 2,
} eTransform_ToFrom;
-/* bTransformConstraint.mix_mode_loc */
+/** #bTransformConstraint.mix_mode_loc */
typedef enum eTransform_MixModeLoc {
/* Add component values together (default). */
TRANS_MIXLOC_ADD = 0,
@@ -834,7 +834,7 @@ typedef enum eTransform_MixModeLoc {
TRANS_MIXLOC_REPLACE = 1,
} eTransform_MixModeLoc;
-/* bTransformConstraint.mix_mode_rot */
+/** #bTransformConstraint.mix_mode_rot */
typedef enum eTransform_MixModeRot {
/* Add component values together (default). */
TRANS_MIXROT_ADD = 0,
@@ -846,7 +846,7 @@ typedef enum eTransform_MixModeRot {
TRANS_MIXROT_AFTER = 3,
} eTransform_MixModeRot;
-/* bTransformConstraint.mix_mode_scale */
+/** #bTransformConstraint.mix_mode_scale */
typedef enum eTransform_MixModeScale {
/* Replace component values (default). */
TRANS_MIXSCALE_REPLACE = 0,
@@ -854,14 +854,14 @@ typedef enum eTransform_MixModeScale {
TRANS_MIXSCALE_MULTIPLY = 1,
} eTransform_MixModeScale;
-/* bSameVolumeConstraint.free_axis */
+/** #bSameVolumeConstraint.free_axis */
typedef enum eSameVolume_Axis {
SAMEVOL_X = 0,
SAMEVOL_Y = 1,
SAMEVOL_Z = 2,
} eSameVolume_Axis;
-/* bSameVolumeConstraint.mode */
+/** #bSameVolumeConstraint.mode */
typedef enum eSameVolume_Mode {
/* Strictly maintain the volume, overriding non-free axis scale. */
SAMEVOL_STRICT = 0,
@@ -871,7 +871,7 @@ typedef enum eSameVolume_Mode {
SAMEVOL_SINGLE_AXIS = 2,
} eSameVolume_Mode;
-/* bActionConstraint.flag */
+/** #bActionConstraint.flag */
typedef enum eActionConstraint_Flags {
/* Bones use "object" part of target action, instead of "same bone name" part */
ACTCON_BONE_USE_OBJECT_ACTION = (1 << 0),
@@ -879,7 +879,7 @@ typedef enum eActionConstraint_Flags {
ACTCON_USE_EVAL_TIME = (1 << 1),
} eActionConstraint_Flags;
-/* bActionConstraint.mix_mode */
+/** #bActionConstraint.mix_mode */
typedef enum eActionConstraint_MixMode {
/* Multiply the action transformation on the right. */
ACTCON_MIX_AFTER_FULL = 0,