diff options
Diffstat (limited to 'src/mapgen_fractal.h')
-rw-r--r-- | src/mapgen_fractal.h | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/src/mapgen_fractal.h b/src/mapgen_fractal.h index 75243f4f1..b515e4c93 100644 --- a/src/mapgen_fractal.h +++ b/src/mapgen_fractal.h @@ -37,13 +37,13 @@ struct MapgenFractalParams : public MapgenSpecificParams { u32 spflags; u16 iterations; - float scale_x; - float scale_y; - float scale_z; - float offset_x; - float offset_y; - float offset_z; - float slice_w; + v3f scale; + + v3f moffset; + float mslice_w; + + v3f joffset; + float jslice_w; float julia_x; float julia_y; float julia_z; @@ -75,13 +75,13 @@ public: v3s16 full_node_max; u16 iterations; - float scale_x; - float scale_y; - float scale_z; - float offset_x; - float offset_y; - float offset_z; - float slice_w; + v3f scale; + + v3f moffset; + float mslice_w; + + v3f joffset; + float jslice_w; float julia_x; float julia_y; float julia_z; |