My Project
 
Loading...
Searching...
No Matches
halo.h
Go to the documentation of this file.
1#pragma once
2
3#include "image.h"
4
5class Halo :public Image{
6private:
7 static const std::string CACHE_KEY;
8
9protected:
10 static const int RADIUS = 64;
11
12 float radius;
14
15public:
16 Halo();
17 Halo(float radius, int color, float brightness);
18 Halo* point(float x, float y);
19 void Radius(float value);
20};
Halo * point(float x, float y)
Definition halo.cpp:49
void Radius(float value)
Definition halo.cpp:56
float radius
Definition halo.h:12
float brightness
Definition halo.h:13
Halo()
Definition halo.cpp:8
static const int RADIUS
Definition halo.h:10