7 lines
171 B
Text
7 lines
171 B
Text
class Circle (radius, x, y) extends Shape (x, y) implements Drawable {
|
|
var myvec = new Vector (x, y)
|
|
|
|
public function draw() {
|
|
// draw the circle
|
|
}
|
|
}
|