📄 myline.java
字号:
// Fig. 8.21: MyLine.java
// Declaration of class MyLine.
import java.awt.Color;
import java.awt.Graphics;
public class MyLine
{
private int x1; // x coordinate of first endpoint
private int y1; // y coordinate of first endpoint
private int x2; // x coordinate of second endpoint
private int y2; // y coordinate of second endpoint
private Color myColor; // color of this shape
// constructor with input values
public MyLine( int x1, int y1, int x2, int y2, Color color )
{
this.x1 = x1; // set x coordinate of first endpoint
this.y1 = y1; // set y coordinate of first endpoint
this.x2 = x2; // set x coordinate of second endpoint
this.y2 = y2; // set y coordinate of second endpoint
myColor = color; // set the color
} // end MyLine constructor
// Actually draws the line
public void draw( Graphics g )
{
g.setColor( myColor );
g.drawLine( x1, y1, x2, y2 );
} // end method draw
} // end class MyLine
/**************************************************************************
* (C) Copyright 1992-2005 by Deitel & Associates, Inc. and *
* Pearson Education, Inc. All Rights Reserved. *
* *
* DISCLAIMER: The authors and publisher of this book have used their *
* best efforts in preparing the book. These efforts include the *
* development, research, and testing of the theories and programs *
* to determine their effectiveness. The authors and publisher make *
* no warranty of any kind, expressed or implied, with regard to these *
* programs or to the documentation contained in these books. The authors *
* and publisher shall not be liable in any event for incidental or *
* consequential damages in connection with, or arising out of, the *
* furnishing, performance, or use of these programs. *
*************************************************************************/
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -