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:
Diffstat (limited to 'source/blender/makesdna/DNA_object_fluidsim_types.h')
-rw-r--r--source/blender/makesdna/DNA_object_fluidsim_types.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/source/blender/makesdna/DNA_object_fluidsim_types.h b/source/blender/makesdna/DNA_object_fluidsim_types.h
index b305235083a..b8927613a59 100644
--- a/source/blender/makesdna/DNA_object_fluidsim_types.h
+++ b/source/blender/makesdna/DNA_object_fluidsim_types.h
@@ -38,14 +38,14 @@
#ifdef __cplusplus
extern "C" {
#endif
-
+
struct Mesh;
struct Ipo;
typedef struct FluidVertexVelocity {
float vel[3];
} FluidVertexVelocity;
-
+
typedef struct FluidsimSettings {
struct FluidsimModifierData *fmd; /* for fast RNA access */
/* threadcont the calculation is done with */
@@ -83,7 +83,7 @@ typedef struct FluidsimSettings {
float gstar;
/* activate refinement? */
int maxRefine;
-
+
/* fluid object type settings */
/* gravity strength */
float iniVelx, iniVely, iniVelz;
@@ -127,19 +127,19 @@ typedef struct FluidsimSettings {
struct FluidVertexVelocity *meshVelocities;
/* number of vertices in simulated fluid mesh */
int totvert;
-
+
/* Fluid control settings */
float cpsTimeStart;
float cpsTimeEnd;
float cpsQuality;
-
+
float attractforceStrength;
float attractforceRadius;
float velocityforceStrength;
float velocityforceRadius;
int lastgoodframe;
-
+
/* Simulation/flow rate control (i.e. old "Fac-Time") */
float animRate;
} FluidsimSettings;