Changeset View
Changeset View
Standalone View
Standalone View
source/blender/blenkernel/BKE_smoke.h
| Show All 34 Lines | |||||
| typedef float (*bresenham_callback)(float *result, float *input, int res[3], int *pixel, float *tRay, float correct); | typedef float (*bresenham_callback)(float *result, float *input, int res[3], int *pixel, float *tRay, float correct); | ||||
| struct Mesh *smokeModifier_do( | struct Mesh *smokeModifier_do( | ||||
| struct SmokeModifierData *smd, struct Depsgraph *depsgraph, | struct SmokeModifierData *smd, struct Depsgraph *depsgraph, | ||||
| struct Scene *scene, | struct Scene *scene, | ||||
| struct Object *ob, struct Mesh *me); | struct Object *ob, struct Mesh *me); | ||||
| void smoke_reallocate_fluid(struct SmokeDomainSettings *sds, float dx, int res[3], int free_old); | void smoke_reallocate_fluid(struct SmokeDomainSettings *sds, int res[3], int free_old); | ||||
| void smoke_reallocate_highres_fluid(struct SmokeDomainSettings *sds, float dx, int res[3], int free_old); | void smoke_reallocate_highres_fluid(struct SmokeDomainSettings *sds, int res[3]); | ||||
| void smokeModifier_free(struct SmokeModifierData *smd); | void smokeModifier_free(struct SmokeModifierData *smd); | ||||
| void smokeModifier_reset(struct SmokeModifierData *smd); | void smokeModifier_reset(struct SmokeModifierData *smd); | ||||
| void smokeModifier_reset_turbulence(struct SmokeModifierData *smd); | |||||
| void smokeModifier_createType(struct SmokeModifierData *smd); | void smokeModifier_createType(struct SmokeModifierData *smd); | ||||
| void smokeModifier_copy(const SmokeModifierData *smd, struct SmokeModifierData *tsmd, const int flag); | void smokeModifier_copy(const SmokeModifierData *smd, struct SmokeModifierData *tsmd, const int flag); | ||||
| float smoke_get_velocity_at(struct Object *ob, float position[3], float velocity[3]); | float smoke_get_velocity_at(struct Object *ob, float position[3], float velocity[3]); | ||||
| int smoke_get_data_flags(struct SmokeDomainSettings *sds); | int smoke_get_data_flags(struct SmokeDomainSettings *sds); | ||||
| #endif /* __BKE_SMOKE_H__ */ | #endif /* __BKE_SMOKE_H__ */ | ||||