package geometry.drawing;
public class Square extends Point {
double edge;
public Square(int x, int y, double e) {
super(x, y);
edge = e;
} // End of Square Constructor
} // End of class Square
Thursday, 25 January 2018
Related Posts:
Grid layout import java.awt.GridLayout;import javax.swing.JButton;import javax.swi… Read More
Box Layout in java import java.awt.Dimension;import java.awt.FlowLayout;import javax.swin… Read More
Layout examples in java import java.awt.*;import javax.swing.*;import java.awt.event.*;public … Read More
Layouts in java import java.awt.Button;import java.awt.Checkbox;import java.awt.FlowLa… Read More
0 comments: