/***** * TPlasma.h * * Object definitions for window to draw a Plasma Fractal in. * *****/ #pragma once // include this header // only once per source file #define PI 3.1415927; #include "TFractalViewerWindow.h" class TPlasma : public TFractalViewerWindow { protected: RGBColor spec[5][256]; virtual void PrepareStyles(); public: TPlasma(void); virtual void DrawShape(Rect *drawingRect); };