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:
authorCampbell Barton <ideasman42@gmail.com>2019-03-15 01:41:13 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-03-15 01:50:02 +0300
commit395a0acdb88338b9790ecefd142f4010df6b955d (patch)
tree9cd222892c0722f1afc6b7a9fc2bed729ad01030 /source/blender/makesdna/DNA_constraint_types.h
parent23272ee099272e3b6e8c27a50733825168539c3d (diff)
Cleanup: style, use doxygen for comments
Diffstat (limited to 'source/blender/makesdna/DNA_constraint_types.h')
-rw-r--r--source/blender/makesdna/DNA_constraint_types.h15
1 files changed, 7 insertions, 8 deletions
diff --git a/source/blender/makesdna/DNA_constraint_types.h b/source/blender/makesdna/DNA_constraint_types.h
index b6fd57d1663..096a2847074 100644
--- a/source/blender/makesdna/DNA_constraint_types.h
+++ b/source/blender/makesdna/DNA_constraint_types.h
@@ -694,17 +694,16 @@ typedef enum eBConstraint_Flags {
/* bConstraint->ownspace/tarspace */
typedef enum eBConstraint_SpaceTypes {
- /* default for all - worldspace */
+ /** Default for all - worldspace. */
CONSTRAINT_SPACE_WORLD = 0,
- /* for objects (relative to parent/without parent influence),
- * for bones (along normals of bone, without parent/restpositions)
- */
+ /** For objects (relative to parent/without parent influence),
+ * for bones (along normals of bone, without parent/restpositions). */
CONSTRAINT_SPACE_LOCAL = 1,
- /* for posechannels - pose space */
+ /** For posechannels - pose space. */
CONSTRAINT_SPACE_POSE = 2,
- /* for posechannels - local with parent */
+ /** For posechannels - local with parent. */
CONSTRAINT_SPACE_PARLOCAL = 3,
- /* for files from between 2.43-2.46 (should have been parlocal) */
+ /** For files from between 2.43-2.46 (should have been parlocal). */
CONSTRAINT_SPACE_INVALID = 4 /* do not exchange for anything! */
} eBConstraint_SpaceTypes;
@@ -733,7 +732,7 @@ typedef enum eCopyLocation_Flags {
LOCLIKE_X = (1<<0),
LOCLIKE_Y = (1<<1),
LOCLIKE_Z = (1<<2),
- /* LOCLIKE_TIP is a deprecated option... use headtail=1.0f instead */
+ /** LOCLIKE_TIP is a deprecated option... use headtail=1.0f instead */
LOCLIKE_TIP = (1<<3),
LOCLIKE_X_INVERT = (1<<4),
LOCLIKE_Y_INVERT = (1<<5),