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-01-07 17:00:40 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-01-07 17:00:40 +0300
commit299ff7dcd1383f5141f5eba3c04c447d5072f705 (patch)
tree2fc7c4975c0a1666254da7edc1c81aaeba907931 /source/blender/makesdna/DNA_cloth_types.h
parent5a43406e1bad973a8cb32702b4fdb588068a6dcd (diff)
Cleanup: corrections to last commit
Diffstat (limited to 'source/blender/makesdna/DNA_cloth_types.h')
-rw-r--r--source/blender/makesdna/DNA_cloth_types.h26
1 files changed, 13 insertions, 13 deletions
diff --git a/source/blender/makesdna/DNA_cloth_types.h b/source/blender/makesdna/DNA_cloth_types.h
index 1f863689ba6..18c1f67513b 100644
--- a/source/blender/makesdna/DNA_cloth_types.h
+++ b/source/blender/makesdna/DNA_cloth_types.h
@@ -53,19 +53,19 @@ typedef struct ClothSimSettings {
float mingoal;
/** Mechanical damping of springs. */
float Cdis DNA_DEPRECATED;
- /** Viscous/fluid damping. . */
+ /** Viscous/fluid damping. */
float Cvi;
- /** Gravity/external force vector. . */
+ /** Gravity/external force vector. */
float gravity[3];
/** This is the duration of our time step, computed.. */
float dt;
- /** The mass of the entire cloth. . */
+ /** The mass of the entire cloth. */
float mass;
/** Structural spring stiffness. */
float structural DNA_DEPRECATED;
- /** Shear spring stiffness. . */
+ /** Shear spring stiffness. */
float shear;
- /** Flexion spring stiffness. . */
+ /** Flexion spring stiffness. */
float bending;
/** Max bending scaling value, min is "bending". */
float max_bend;
@@ -115,15 +115,15 @@ typedef struct ClothSimSettings {
float voxel_cell_size;
int pad;
- /** Number of time steps per frame. . */
+ /** Number of time steps per frame. */
int stepsPerFrame;
- /** Flags, see CSIMSETT_FLAGS enum above.. */
+ /** Flags, see CSIMSETT_FLAGS enum above. */
int flags;
- /** How many frames of simulation to do before we start.. */
+ /** How many frames of simulation to do before we start. */
int preroll DNA_DEPRECATED;
/** In percent!; if tearing enabled, a spring will get cut. */
int maxspringlen;
- /** Which solver should be used? txold. */
+ /** Which solver should be used? txold. */
short solver_type;
/** Vertex group for scaling bending stiffness. */
short vgroup_bend;
@@ -161,13 +161,13 @@ typedef struct ClothSimSettings {
typedef struct ClothCollSettings {
/** E.g. pointer to temp memory for collisions. */
struct LinkNode *collision_list;
- /** Min distance for collisions. . */
+ /** Min distance for collisions. */
float epsilon;
/** Fiction/damping with self contact. */
float self_friction;
- /** Friction/damping applied on contact with other object..*/
+ /** Friction/damping applied on contact with other object. */
float friction;
- /** Collision restitution on contact with other object..*/
+ /** Collision restitution on contact with other object. */
float damping;
/** For selfcollision. */
float selfepsilon;
@@ -177,7 +177,7 @@ typedef struct ClothCollSettings {
int flags;
/** How many iterations for the selfcollision loop. */
short self_loop_count DNA_DEPRECATED;
- /** How many iterations for the collision loop. . */
+ /** How many iterations for the collision loop. */
short loop_count;
int pad;
/** Only use colliders from this group of objects. */