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:
authorJacques Lucke <mail@jlucke.com>2019-06-26 19:18:38 +0300
committerJacques Lucke <mail@jlucke.com>2019-06-26 19:18:38 +0300
commit06fab69664e962bd33277d90568452cf28859472 (patch)
tree5009cd00ac3672bb4ec128dd3024a3ca3cd61440 /source/blender/simulations/BParticles.h
parentddb44cefbdc5a3e4884def03937a4439b3ff1fe4 (diff)
visualize different particle types with vertex colors
Diffstat (limited to 'source/blender/simulations/BParticles.h')
-rw-r--r--source/blender/simulations/BParticles.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/source/blender/simulations/BParticles.h b/source/blender/simulations/BParticles.h
index ca04093f3c9..70cc46237f2 100644
--- a/source/blender/simulations/BParticles.h
+++ b/source/blender/simulations/BParticles.h
@@ -8,6 +8,7 @@
extern "C" {
#endif
+struct Mesh;
struct Depsgraph;
struct NodeParticlesModifierData;
@@ -23,6 +24,8 @@ void BParticles_simulate_modifier(NodeParticlesModifierData *npmd,
uint BParticles_state_particle_count(BParticlesState state);
void BParticles_state_get_positions(BParticlesState state, float (*dst)[3]);
+struct Mesh *BParticles_test_mesh_from_state(BParticlesState state_c);
+
#ifdef __cplusplus
}
#endif