-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathgraph2.bsh
48 lines (38 loc) · 966 Bytes
/
graph2.bsh
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
import bsh.util.BshCanvas; // BshCanvas simply buffers graphics
graph( int width, int height ) {
scale=object();
scale.x=100; scale.y=100;
drawAxis() {
graphics.setColor( Color.red );
graphics.drawLine( 0, height/2, width, height/2 );
graphics.drawLine( width/2, 0, width/2, height );
}
plot(x, y, Color color) {
graphics.setColor( color );
graphics.fillOval( (int)((x/scale.x+1)*(width/2))-1,
(int)((-y/scale.y+1)*(height/2))-1, 3, 3);
canvas.repaint();
}
clear() {
graphics.setColor( Color.white );
graphics.fillRect(0,0,width,height);
drawAxis();
canvas.repaint();
}
setScale( x, y ) {
scale.x=1.0*x;
scale.y=1.0*y;
}
canvas=new BshCanvas();
canvas.setSize( width, height );
frame=frame( canvas );
graphics=canvas.getBufferedGraphics();
drawAxis();
return this;
}
g=graph(400,200);
g.setScale(2*Math.PI,1.0);
for (x=-2*Math.PI; x<2*Math.PI; x+=0.1) {
y=Math.sin(x);
g.plot( x, y, Color.black );
}