Mandelbulb.js

### Install

1. Place Mandelbulb.js file into ~/Application Support/Cheetah3D/scripts/Polygonobj folder.
2. Place Mandelbulb file into ~/Application Support/Cheetah3D/scripts/Polygonobj folder.

if you use older than 5.5

1. Edit script line.9 to 'var execPath = "[/your/own/absolute/path/to/]Mandelbulb";'  in Mandelbulb.js.
2. Place Mandelbulb.js file into ~/Application Support/Cheetah3D/scripts/Polygonobj folder.

### Testing Mandelbulb

at Terminal.app

path/to/bin/Mandelbulb [Enter]
[Output]
*** Mandelbulb[***] result Mandelbulb volume_size:64, detected_set:4; triangles:0, vertices:0

If you see output as above, Mandelbulb seems to work. if you don't, you have to make Mandelbulb manually with your system.
I compiled Mandelbulb with 10.6 SDK with GCD, if you use Mac OS X 10.5, you need to make yourself with XCode project file.

### Usage

.... not yet .. please try and play :p

### Copyrights of Library/Codes

#### Mandelbulb

// Copyright (c) 2009 Tom Beddard
// http://www.subblue.com
//
// Licensed under the MIT License:
// http://www.opensource.org/licenses/mit-license.php
//
//
// Credits and references
// ======================
// For the story behind the 3D Mandelbrot see the following page:
// http://www.skytopia.com/project/fractal/mandelbulb.html
//
// The original forum disussion with many implementation details can be found here:
// http://www.fractalforums.com/3d-fractal-generation/true-3d-mandlebrot-type-fractal/

#### Parsing command line option

 * Copyright (c) 2007-2008 Dave Dribin
 * 
 * Permission is hereby granted, free of charge, to any person
 * obtaining a copy of this software and associated documentation
 * files (the "Software"), to deal in the Software without
 * restriction, including without limitation the rights to use, copy,
 * modify, merge, publish, distribute, sublicense, and/or sell copies
 * of the Software, and to permit persons to whom the Software is
 * furnished to do so, subject to the following conditions:
 * 
 * The above copyright notice and this permission notice shall be
 * included in all copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
 * SOFTWARE.

#### Marching Cube implementation

//  Created by Steve Challis.
//  Copyright 2010 All rights reserved.
//    from http://github.com/schallis/marchingcubes
