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_rigidbody_types.h
parent23272ee099272e3b6e8c27a50733825168539c3d (diff)
Cleanup: style, use doxygen for comments
Diffstat (limited to 'source/blender/makesdna/DNA_rigidbody_types.h')
-rw-r--r--source/blender/makesdna/DNA_rigidbody_types.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/source/blender/makesdna/DNA_rigidbody_types.h b/source/blender/makesdna/DNA_rigidbody_types.h
index 9985236aeb1..a3a2a0e0124 100644
--- a/source/blender/makesdna/DNA_rigidbody_types.h
+++ b/source/blender/makesdna/DNA_rigidbody_types.h
@@ -197,23 +197,23 @@ typedef enum eRigidBodyOb_Flag {
/* RigidBody Collision Shape */
typedef enum eRigidBody_Shape {
- /* simple box (i.e. bounding box) */
+ /** Simple box (i.e. bounding box). */
RB_SHAPE_BOX = 0,
- /* sphere */
+ /** Sphere. */
RB_SHAPE_SPHERE,
- /* rounded "pill" shape (i.e. calcium tablets) */
+ /** Rounded "pill" shape (i.e. calcium tablets). */
RB_SHAPE_CAPSULE,
- /* cylinder (i.e. pringles can) */
+ /** Cylinder (i.e. pringles can). */
RB_SHAPE_CYLINDER,
- /* cone (i.e. party hat) */
+ /** Cone (i.e. party hat). */
RB_SHAPE_CONE,
- /* convex hull (minimal shrinkwrap encompassing all verts) */
+ /** Convex hull (minimal shrinkwrap encompassing all verts). */
RB_SHAPE_CONVEXH,
- /* triangulated mesh */
+ /** Triangulated mesh. */
RB_SHAPE_TRIMESH,
- /* concave mesh approximated using primitives */
+ /* concave mesh approximated using primitives */
//RB_SHAPE_COMPOUND,
} eRigidBody_Shape;