You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
371 B
15 lines
371 B
import { Point, Rect } from './utils';
|
|
|
|
export class Ball {
|
|
rect: Rect;
|
|
speed: Point;
|
|
color: string | CanvasGradient | CanvasPattern = 'white';
|
|
|
|
constructor(spawn: Point, size: Point = new Point(20, 20), speed: Point = new Point(10, 2)) {
|
|
this.rect = new Rect(spawn, size);
|
|
}
|
|
|
|
draw(context: CanvasRenderingContext2D) {
|
|
this.rect.draw(context, this.color);
|
|
}
|
|
}
|
|
|