fractals with interpreted interate and escape function

Author: Thomas Brandstätter (e0927911@student.tuwien.ac.at)

Source: downlaod

TOC

Translate

Configuration

( 1) /wh_point_step { 2 } def %% x y step point_step ( 2) /wh_scale { 1 div floor cvi } def %% scale whole image ( 3) /width { 725 wh_scale } def %% fractal width ( 4) /height { 450 wh_scale } def %% fractal height ( 5) /center_y -0.28 def %% x center of view in complex area ( 6) /center_x 0.72 def %% y center of view in complex area ( 7) /zoom 32 def %% zoom level of view ( 8) /color_map (default) def %% definitions from colors directory ( 9) /iterate_maximum 100 def %% recusion escape value (10) /limit_value 4 def %% limit of z (11) (z ^^2 ||) tokenize parse codegen /limit_formula exch def (12) (z ^^2 -- c) tokenize parse codegen /iterate_formula exch def

Point Step

point step 1 point step 2 point step 5
/wh_point_step 1 def /wh_point_step 2 def /wh_point_step 5 def
very slow slow fast

Color Map

point step 1 point step 2 point step 5
lyapunov2 continues3 green

Zoom / Center X Y

center

point step 1 point step 2 point step 5
(0, 0) (0, 1) (0, 1.5)

zoom

mbz4 mbz8 mbz16
zoom 4 zoom 8 zoom 16

Makefile

Important goals: mb cbs color_test test

make mb make cbs make color_test make test

Color Test