Download
pfuentes69
/FractalViewer
/TPlasma.h
(View History)
| pfp First commit | Latest amendment: 1 on 2022-08-26 |
| 1 | /***** |
| 2 | * TPlasma.h |
| 3 | * |
| 4 | * Object definitions for window to draw a Plasma Fractal in. |
| 5 | * |
| 6 | *****/ |
| 7 | |
| 8 | #pragma once // include this header |
| 9 | // only once per source file |
| 10 | |
| 11 | #define PI 3.1415927; |
| 12 | |
| 13 | #include "TFractalViewerWindow.h" |
| 14 | |
| 15 | |
| 16 | class TPlasma : public TFractalViewerWindow { |
| 17 | protected: |
| 18 | RGBColor spec[5][256]; |
| 19 | virtual void PrepareStyles(); |
| 20 | public: |
| 21 | TPlasma(void); |
| 22 | virtual void DrawShape(Rect *drawingRect); |
| 23 | }; |