-
Notifications
You must be signed in to change notification settings - Fork 91
/
graph.pde
99 lines (74 loc) · 2.87 KB
/
graph.pde
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
int graphWidth() {
return width - 280; //return width - 255;
}
int graphX() {
return 230;
}
int graphHeight() {
return height - 50;
}
int graphY() {
return 25;
}
int hzPerPixel() {
return (stopFreq - startFreq)/graphWidth();
}
int gainPerPixel() {
return ( (scaleMax - scaleMin) * 1000) /graphHeight();
}
void graphDrawLine(int x1, int y1, int x2, int y2, int lineColor, float alpha) {
// this rtn draws the frequency trace on the screen ===========
stroke(lineColor, alpha);
if (drawSampleToggle) {
ellipse(x2 + graphX(), graphHeight() - y2 + graphY(),1,1);
}
else {
line(x1 + graphX(), graphHeight() - y1 + graphY(), x2 + graphX(), graphHeight() - y2 + graphY());
}
}
void graphDrawFill(int x1, int y1, int x2, int y2, int lineColor, float alpha) {
// this rtn draws the frequency trace on the screen ===========
stroke(lineColor, alpha);
quad( x1 + graphX(), graphHeight() - y1 + graphY(), x2 + graphX(), graphHeight() - y2 + graphY() ,
x2 + graphX(), graphY() + graphHeight(), x1 + graphX(), graphY() + graphHeight() );
}
void drawGraphMatt(double minValue, double maxValue, int minFreq, int maxFreq) {
// This rtn draws the grid on the screen ======================
int pixelSpacing = 50;
int verticals = (graphWidth() / pixelSpacing / 5) * 5;
int horizontals = (graphHeight() / pixelSpacing / 5) * 5;
verticals = verticals == 0 ? 1 : verticals;
horizontals = horizontals == 0 ? 1 : horizontals;
float verticalSpacing = graphWidth() / (float)verticals;
float horizontalSpacing = graphHeight() / (float)horizontals;
double xStep = (maxFreq - minFreq) / verticals / 10000.0;
double xPos = minFreq / 10000.0;
double yStep = (maxValue - minValue) / horizontals;
double yPos = maxValue;
stroke(#474747);
fill(#A7A7A7);
for (int i = 0; i<=verticals; i++) {
line(graphX() + i * verticalSpacing, graphY(), graphX() + i * verticalSpacing, graphY() + graphHeight());
textAlign(CENTER); //TODO optimize for efficiency and speed
text( round((float) ifCorrectedFreq( (int) (xPos * 10000) )/10000.0 ) / 100.0 + "", graphX() + i * verticalSpacing, graphY() + graphHeight() + 20);
xPos += xStep;
}
for (int i = 0; i<=horizontals; i++) {
line(graphX(), graphY() + i * horizontalSpacing, graphX() + graphWidth(), graphY() + i * horizontalSpacing);
textAlign(RIGHT);
text(round((float)yPos) + "", graphX() - 5, graphY() + i * horizontalSpacing + 4);
yPos -= yStep;
}
}
void sweep(int x, int lineColor, float alpha) {
// show sweep
// plot new marker
stroke(lineColor, alpha);
line(x + graphX(), graphY() ,x + graphX(), graphY()+graphHeight());
}
void sweepVertical(int y, int lineColor, float alpha) {
// show sweep
// plot new marker
stroke(lineColor, alpha);
line(graphX(), y + graphY() , graphX() + graphWidth(), y + graphY());
}