The fractal formula file has a structure like this:
fractal
{
mapping {
...
}
colors {
...
}
formula {
...
}
}
The details of each section can be found by following the appropriate link, this document will focus on the high-level characteristics of the formula file.
Here are some overall notes:
will be recognized but:
will not be
| Section Name | Required? |
|---|---|
| mapping | yes |
| colors | no |
| formula | yes |
Here are some examples of the three comment styles
/* -- This is a C style comment,
note that it can span multiple lines -- */
// This c++ style comment ends at the end of this line
# So does this script style comment