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>2012-04-12 04:15:02 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-04-12 04:15:02 +0400
commit5aaf3ede76c91a062d09360301083b6f75a6a89f (patch)
tree4283c97a354f10b7ad24db9df97de023fb4e30a7 /source/blender/blenkernel/BKE_cloth.h
parentc8b19b7b7fee817e4c7934973c99040747be53c3 (diff)
code cleanup: remove unused var for windows and style edit (remove spaces between 'var[num]')
Diffstat (limited to 'source/blender/blenkernel/BKE_cloth.h')
-rw-r--r--source/blender/blenkernel/BKE_cloth.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/source/blender/blenkernel/BKE_cloth.h b/source/blender/blenkernel/BKE_cloth.h
index 435832f8c87..623dbd9c7ac 100644
--- a/source/blender/blenkernel/BKE_cloth.h
+++ b/source/blender/blenkernel/BKE_cloth.h
@@ -94,12 +94,12 @@ typedef struct Cloth
typedef struct ClothVertex
{
int flags; /* General flags per vertex. */
- float v [3]; /* The velocity of the point. */
- float xconst [3]; /* constrained position */
- float x [3]; /* The current position of this vertex. */
- float xold [3]; /* The previous position of this vertex.*/
- float tx [3]; /* temporary position */
- float txold [3]; /* temporary old position */
+ float v[3]; /* The velocity of the point. */
+ float xconst[3]; /* constrained position */
+ float x[3]; /* The current position of this vertex. */
+ float xold[3]; /* The previous position of this vertex.*/
+ float tx[3]; /* temporary position */
+ float txold[3]; /* temporary old position */
float tv[3]; /* temporary "velocity", mostly used as tv = tx-txold */
float mass; /* mass / weight of the vertex */
float goal; /* goal, from SB */