This repository has been archived by the owner on Apr 17, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCircleBrush.hpp
69 lines (60 loc) · 2.13 KB
/
CircleBrush.hpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
#if !defined(__CIRCLE_BRUSH__)
#define __CIRCLE_BRUSH__
#include "ImpBrush.h"
#include "gl_helper.h"
#include "impressionistDoc.h"
#include "impressionistUI.h"
using namespace GLHelper;
class CircleBrush : public ImpBrush {
public:
double radius = 0;
CircleBrush(ImpressionistDoc *pDoc = NULL, char *name = NULL)
: ImpBrush(pDoc, name) {}
void BrushBegin(const Point source, const Point target, int rad, GLubyte* color) {
ImpressionistDoc *pDoc = GetDocument();
ImpressionistUI *dlg = pDoc->m_pUI;
float size = (rad > 0) ? rad : pDoc->getSize();
glPointSize((float)size);
BrushMove(source, target, color);
}
void BrushMove(const Point source, const Point target, GLubyte* color = nullptr, bool randomize = false) {
ImpressionistDoc *pDoc = GetDocument();
if (source.x <= 0 || source.x >= pDoc->m_nPaintWidth || source.y <= 0 ||
source.y >= pDoc->m_nPaintHeight) {
return;
}
radius = pDoc->getSize() / 2.0;
if (randomize && frand() >= 0.75)
RandomizeAttributes();
gl_draw_shape(GL_POLYGON, [&] {
if (color) {
glColor4ubv(color);
}
else SetColor(source);
for (double i = 0; i <= 2 * M_PI; i += 0.1) {
double dx = cos(i) * radius;
double dy = sin(i) * radius;
gl_set_point(target.x + dx, target.y + dy);
}
});
pDoc->force_update_canvas();
}
void BrushEnd(const Point source, const Point target) {}
void RandomizeAttributes() {
int size = pDoc->m_pUI->getSize();
radius = irand(size + 5);
}
void select() {
ImpressionistDoc *pDoc = GetDocument();
pDoc->m_pUI->m_BrushWidthSlider->deactivate();
pDoc->m_pUI->m_BrushAngleSlider->deactivate();
pDoc->m_pUI->m_StrokeDirection->deactivate();
pDoc->m_pUI->m_BrushSizeSlider->activate();
pDoc->m_pUI->m_BrushAlphaSlider->activate();
pDoc->m_pUI->m_BrushBlurSlider->deactivate();
pDoc->m_pUI->m_ColorBlending->activate();
pDoc->m_pUI->m_MultiResPaint->activate();
pDoc->m_pUI->m_BrushCurvatureSlider->deactivate();
}
};
#endif // __CIRCLE_BRUSH__