-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLine.java
172 lines (169 loc) · 5.54 KB
/
Line.java
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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
//-------------------------- Line.java -----------------------------
import java.awt.geom.*;
import java.awt.*;
/**
* Line.java -- a convenience class for simplifying access to awt Line2D.
* the model for this class is the wheels Line class.
*
* This class is patterned after the SmartEllipse and SmartRectangle classes
* from Ch 7 of Sanders and van Dam, Object-Oriented Programming with Java
* as revised into our Ellipse and Rectangle classes.
*
* @author rdb
* January 2008
* Last edit
* 03/16/14 rdb: made checkstyle compatible
*/
public class Line extends java.awt.geom.Line2D.Double
{
//---------------- instance variables -------------------------------
protected Color _lineColor;
protected int _lineWidth = 1;
//----------------- constructors ------------------------------------
/**
* No argument constructor.
*/
public Line()
{
this( Color.BLACK );
}
/**
* Constructor based on SmartEllipse and SmartRectangle constructors.
* @param aColor Color specify line color
*/
public Line( Color aColor )
{
_lineColor = aColor;
}
/**
* Another wheels-like constructor -- uses double rather than float.
* @param x1 double endpoints
* @param y1 double
* @param x2 double
* @param y2 double
*/
public Line( double x1, double y1, double x2, double y2 )
{
this( Color.BLACK );
this.setPoints( x1, y1, x2, y2 );
}
//--------------------- wheels-like convenience methods -----------------
//------------------- setColor( Color ) ------------------------------
/**
* setColor -- a wheels method.
* @param aColor Color set line color
*/
public void setColor( Color aColor )
{
_lineColor = aColor;
}
//------------------- setThickness( int ) ------------------------------
/**
* setThickness -- a wheels method.
* @param w int set line thickness
*/
public void setThickness( int w )
{
_lineWidth = w;
}
//------------------- setLineWidth( int ) ------------------------------
/**
* setLineWidth -- same as setThickness, but I like the name better.
* @param w int set line thickness
*/
public void setLineWidth( int w )
{
_lineWidth = w;
}
//------------------- getXLocation() ------------------------------
/**
* getXLocation() - a wheels-like method.
* @return int return int value of x location
*/
public int getXLocation()
{
return (int) this.getX1();
}
//------------------- getYLocation() ------------------------------
/**
* getYLocation() - a wheels-like method.
* @return int return int value of y location
*/
public int getYLocation()
{
return (int) this.getY1();
}
//-------------------- setPoints( int, int, int, int ) ------------
/**
* setPoints -- wheels-like method.
* define the endpoints of the line with double, rather than int
* @param x1 double endpoints
* @param y1 double
* @param x2 double
* @param y2 double
*/
public void setPoints( double x1, double y1, double x2, double y2 )
{
this.setLine ( x1, y1, x2, y2 );
}
//----------------- setLocation( double, double ) -----------------
/**
* setLocation( double, double ) -- wheels-like.
* location is the first endpoint; changing the location assumes
* other end point should move accordingly.
* @param x double location of 1st endpoint
* @param y double
*/
public void setLocation( double x, double y )
{
this.move( (int)( x - this.getX1() ), (int)( y - this.getY1() ) );
}
//------------------------ setSize( int, int ) --------------------
/**
* setSize( int, int ) -- wheels-like.
* Changes the 2nd end point, the parameters are assumed to
* represent relative position of 2nd end point to the first.
* @param aWidth int width
* @param aHeight int height
*/
public void setSize( int aWidth, int aHeight )
{
this.setLine( this.getX1(), this.getY1(),
this.getX1() + aWidth, this.getY1() + aHeight );
}
//--------------------------- move( int, int ) --------------------
/**
* move( dx, dy ) -- move the location by delta.
* @param aChangeInX int delta x
* @param aChangeInY int delta y
*/
public void move( int aChangeInX, int aChangeInY )
{
this.setLine( this.getX1() + aChangeInX, this.getY1() + aChangeInY,
this.getX2() + aChangeInX, this.getY2() + aChangeInY );
}
//--------------------------- display( Graphics2D ) ---------------
/**
* Display - calls draw and fill awt methods (this is an rdb method).
* @param aBetterBrush Graphics2D
*/
public void display( java.awt.Graphics2D aBetterBrush )
{
draw( aBetterBrush );
}
//--------------------------- draw( Graphics2D ) -------------------
/**
* draw - overrides parent method.
* @param aBrush Graphics2D
*/
public void draw( java.awt.Graphics2D aBrush )
{
Color savedColor = aBrush.getColor();
aBrush.setColor( _lineColor );
java.awt.Stroke savedStroke = aBrush.getStroke();
aBrush.setStroke( new java.awt.BasicStroke( _lineWidth ) );
aBrush.draw( this );
aBrush.setStroke( savedStroke );
aBrush.setColor( savedColor );
}
}