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>2018-12-02 06:14:51 +0300
committerCampbell Barton <ideasman42@gmail.com>2018-12-02 06:14:51 +0300
commitc00e1f68e9b81cc4972dabb869d1b6993a3bc767 (patch)
treef95ae6304cffba3c2a1b4730a1b7ea9bb0287bae /source/blender/blenkernel/BKE_effect.h
parenta9bd788348484fb4a62654ea3ffa60ed24b94ff3 (diff)
Cleanup: BKE_effect.h naming
Diffstat (limited to 'source/blender/blenkernel/BKE_effect.h')
-rw-r--r--source/blender/blenkernel/BKE_effect.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/source/blender/blenkernel/BKE_effect.h b/source/blender/blenkernel/BKE_effect.h
index bb5048a00f0..f12c55e762c 100644
--- a/source/blender/blenkernel/BKE_effect.h
+++ b/source/blender/blenkernel/BKE_effect.h
@@ -45,8 +45,7 @@ struct ParticleSimulationData;
struct ParticleData;
struct ParticleKey;
-struct EffectorWeights *BKE_add_effector_weights(struct Group *group);
-struct PartDeflect *object_add_collision_fields(int type);
+struct EffectorWeights *BKE_effector_add_weights(struct Group *group);
/* Input to effector code */
typedef struct EffectedPoint {
@@ -109,7 +108,9 @@ typedef struct EffectorCache {
int flag;
} EffectorCache;
-void free_partdeflect(struct PartDeflect *pd);
+struct PartDeflect *BKE_partdeflect_new(int type);
+void BKE_partdeflect_free(struct PartDeflect *pd);
+
struct ListBase *pdInitEffectors(struct Scene *scene, struct Object *ob_src, struct ParticleSystem *psys_src, struct EffectorWeights *weights, bool for_simulation);
void pdEndEffectors(struct ListBase **effectors);
void pdPrecalculateEffectors(struct ListBase *effectors);