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:
authorBrecht Van Lommel <brechtvanlommel@pandora.be>2008-03-26 21:34:24 +0300
committerBrecht Van Lommel <brechtvanlommel@pandora.be>2008-03-26 21:34:24 +0300
commit750836ec7dd707f918cbf2a2c2ecfa1fcb2fe3f8 (patch)
treea48244c0eaf3e844600306b6a6312c72d6322b91 /source/blender/blenkernel/BKE_particle.h
parentb37cf7d75d2539a6ea38a86c7b44ff989f96db36 (diff)
Fix for bug #8609: radius setting for hair child particles not symmetrical.
Bug might have actually caused more issues, there were some assumptions that ParticleCacheKey and ParticleKey structs had members in the same order, but the rotation was in a different place.
Diffstat (limited to 'source/blender/blenkernel/BKE_particle.h')
-rw-r--r--source/blender/blenkernel/BKE_particle.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenkernel/BKE_particle.h b/source/blender/blenkernel/BKE_particle.h
index 53960a71470..f134c4597c1 100644
--- a/source/blender/blenkernel/BKE_particle.h
+++ b/source/blender/blenkernel/BKE_particle.h
@@ -113,8 +113,8 @@ typedef struct ParticleSeam{
typedef struct ParticleCacheKey{
float co[3];
float vel[3];
- float col[3];
float rot[4];
+ float col[3];
int steps;
} ParticleCacheKey;