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_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;