Skip to content

Commit 2ec1eee

Browse files
committedNov 6, 2015
Conf.example, settingtypes: Improve mgfractal documentation
1 parent 5e507c9 commit 2ec1eee

File tree

2 files changed

+33
-31
lines changed

2 files changed

+33
-31
lines changed
 

‎builtin/settingtypes.txt

+22-16
Original file line numberDiff line numberDiff line change
@@ -936,52 +936,58 @@ mgv7_np_cave2 (Mapgen v7 cave2 noise parameters) noise_params 0, 12, (100, 100,
936936
# Flags starting with "no" are used to explicitly disable them.
937937
mgfractal_spflags (Mapgen fractal flags) flags nojulia julia,nojulia
938938

939-
# Mandelbrot set: iterations of recursive function.
939+
# Mandelbrot set: Iterations of the recursive function.
940940
# Controls scale of finest detail.
941941
mgfractal_m_iterations (Mapgen fractal mandelbrot iterations) int 9
942942

943-
# Mandelbrot set: Approximate scale in nodes.
944-
# Format is 3 numbers separated by commas, inside brackets.
943+
# Mandelbrot set: Approximate (X,Y,Z) scales in nodes.
944+
# Format is 3 numbers separated by commas and inside brackets.
945945
mgfractal_m_scale (Mapgen fractal mandelbrot scale) string (1024.0, 256.0, 1024.0)
946-
# 'string' is currently used for a v3f argument.
946+
# Type 'string' is currently used for a v3f.
947947

948-
# Mandelbrot set: Offsets the fractal from world centre.
949-
# Format is 3 numbers separated by commas, inside brackets.
950-
# Range -2 to 2, multiply by m_scale for actual offset in nodes.
948+
# Mandelbrot set: (X,Y,Z) offsets from world centre.
949+
# Format is 3 numbers separated by commas and inside brackets.
950+
# Range roughly -2 to 2, multiply by m_scale for offsets in nodes.
951951
mgfractal_m_offset (Mapgen fractal mandelbrot offset) string (1.75, 0.0, 0.0)
952-
# 'string' is currently used for a v3f argument.
952+
# Type 'string' is currently used for a v3f.
953953

954954
# Mandelbrot set: W co-ordinate of the generated 3D slice of the 4D shape.
955+
# Range roughly -2 to 2.
955956
mgfractal_m_slice_w (Mapgen fractal mandelbrot slice w) float 0.0
956957

957-
# Julia set: iterations of recursive function.
958+
# Julia set: Iterations of the recursive function.
958959
# Controls scale of finest detail.
959960
mgfractal_j_iterations (Mapgen fractal julia iterations) int 9
960961

961-
# Julia set: Approximate scale in nodes.
962-
# Format is 3 numbers separated by commas, inside brackets.
962+
# Julia set: Approximate (X,Y,Z) scales in nodes.
963+
# Format is 3 numbers separated by commas and inside brackets.
963964
mgfractal_j_scale (Mapgen fractal julia scale) string (2048.0, 512.0, 2048.0)
964-
# 'string' is currently used for a v3f argument.
965+
# Type 'string' is currently used for a v3f.
965966

966-
# Julia set: Offsets the fractal from world centre.
967-
# Format is 3 numbers separated by commas, inside brackets.
968-
# Range -2 to 2, multiply by j_scale for actual offset in nodes.
967+
# Julia set: (X,Y,Z) offsets from world centre.
968+
# Format is 3 numbers separated by commas and inside brackets.
969+
# Range roughly -2 to 2, multiply by j_scale for offsets in nodes.
969970
mgfractal_j_offset (Mapgen fractal julia offset) string (0.0, 1.0, 0.0)
970-
# 'string' is currently used for a v3f argument.
971+
# Type 'string' is currently used for a v3f.
971972

972973
# Julia set: W co-ordinate of the generated 3D slice of the 4D shape.
974+
# Range roughly -2 to 2.
973975
mgfractal_j_slice_w (Mapgen fractal julia slice w) float 0.0
974976

975977
# Julia set: X value determining the 4D shape.
978+
# Range roughly -2 to 2.
976979
mgfractal_julia_x (Mapgen fractal julia x) float 0.33
977980

978981
# Julia set: Y value determining the 4D shape.
982+
# Range roughly -2 to 2.
979983
mgfractal_julia_y (Mapgen fractal julia y) float 0.33
980984

981985
# Julia set: Z value determining the 4D shape.
986+
# Range roughly -2 to 2.
982987
mgfractal_julia_z (Mapgen fractal julia z) float 0.33
983988

984989
# Julia set: W value determining the 4D shape.
990+
# Range roughly -2 to 2.
985991
mgfractal_julia_w (Mapgen fractal julia w) float 0.33
986992

987993
mgfractal_np_seabed (Mapgen fractal seabed noise parameters) noise_params -14, 9, (600, 600, 600), 41900, 5, 0.6, 2.0

‎minetest.conf.example

+11-15
Original file line numberDiff line numberDiff line change
@@ -1188,54 +1188,50 @@
11881188
# type: flags possible values: julia, nojulia
11891189
# mgfractal_spflags = nojulia
11901190

1191-
# Mandelbrot set: iterations of recursive function.
1191+
# Mandelbrot set: Iterations of the recursive function.
11921192
# Controls scale of finest detail.
11931193
# type: int
11941194
# mgfractal_m_iterations = 9
11951195

1196-
# Mandelbrot set: Approximate scale in nodes.
1196+
# Mandelbrot set: Approximate (X,Y,Z) scales in nodes.
11971197
# type: v3f
11981198
# mgfractal_m_scale = (1024.0, 256.0, 1024.0)
11991199

1200-
# Mandelbrot set: Offsets the fractal from world centre.
1201-
# Range -2 to 2, multiply by m_scale for actual offset in nodes.
1200+
# Mandelbrot set: (X,Y,Z) offsets from world centre.
1201+
# Range roughly -2 to 2, multiply by m_scale for offsets in nodes.
12021202
# type: v3f
12031203
# mgfractal_m_offset = (1.75, 0.0, 0.0)
12041204

12051205
# Mandelbrot set: W co-ordinate of the generated 3D slice of the 4D shape.
1206+
# Range roughly -2 to 2.
12061207
# type: float
12071208
# mgfractal_m_slice_w = 0.0
12081209

1209-
# Julia set: iterations of recursive function.
1210+
# Julia set: Iterations of the recursive function.
12101211
# Controls scale of finest detail.
12111212
# type: int
12121213
# mgfractal_j_iterations = 9
12131214

1214-
# Julia set: Approximate scale in nodes.
1215+
# Julia set: Approximate (X,Y,Z) scales in nodes.
12151216
# type: v3f
12161217
# mgfractal_j_scale = (2048.0, 512.0, 2048.0)
12171218

1218-
# Julia set: Offsets the fractal from world centre.
1219-
# Range -2 to 2, multiply by j_scale for actual offset in nodes.
1219+
# Julia set: (X,Y,Z) offsets from world centre.
1220+
# Range roughly -2 to 2, multiply by j_scale for offsets in nodes.
12201221
# type: v3f
12211222
# mgfractal_j_offset = (0.0, 1.0, 0.0)
12221223

12231224
# Julia set: W co-ordinate of the generated 3D slice of the 4D shape.
1225+
# Range roughly -2 to 2.
12241226
# type: float
12251227
# mgfractal_j_slice_w = 0.0
12261228

12271229
# Julia set: The following 4 values determine the 4D shape.
1228-
# Range -2 to 2.
1230+
# Range roughly -2 to 2.
12291231
# type: float
12301232
# mgfractal_julia_x = 0.33
1231-
1232-
# type: float
12331233
# mgfractal_julia_y = 0.33
1234-
1235-
# type: float
12361234
# mgfractal_julia_z = 0.33
1237-
1238-
# type: float
12391235
# mgfractal_julia_w = 0.33
12401236

12411237
# type: noise_params

0 commit comments

Comments
 (0)
Please sign in to comment.