MRaster examples 21.0.0.0
Image Processing Library
|
Draw a Mandelbrot set using an edge detection algorithm. More...
Go to the source code of this file.
Draw a Mandelbrot set using an edge detection algorithm.
Copyright (c) 1988-2015, Mitchell Jay Richling https://www.mitchr.me All rights reserved.
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
The ramCanvas library has a very rich (some would say bloated) collection of functions that do essentially the same thing just in slightly different ways. The reason for this is so that the library can support legacy code directly, and generally bend itself to different programming styles and needs.
One example of this are the "point objects" and associated methods. Of the nice things about the point objects defined in the ramCanvas object is that they are binary compatible with the most common point and complex formats used – including the complex that are contained in the C and C++ standards and the complex used in Fortran. As a good example, the findAlphaTriangle, traceBoundry, and inSet functions existed long before the ramCanvas library, yet one is able to directly make use of the preexisting data types.
Definition in file mandelbrot_triangle.cpp.