rectangle painting fix, circle painting fix
This commit is contained in:
parent
57c642ca06
commit
366c0eb977
@ -8,6 +8,7 @@ class Circle extends Shape {
|
|||||||
}
|
}
|
||||||
draw(ctx) {
|
draw(ctx) {
|
||||||
ctx.arc(this._x, this._y, this._r, 0, Math.PI * 2);
|
ctx.arc(this._x, this._y, this._r, 0, Math.PI * 2);
|
||||||
|
ctx.fill();
|
||||||
}
|
}
|
||||||
|
|
||||||
static randomOptions() {
|
static randomOptions() {
|
||||||
|
@ -8,7 +8,7 @@ class Rectangle extends Shape {
|
|||||||
this._height = height;
|
this._height = height;
|
||||||
}
|
}
|
||||||
draw(context) {
|
draw(context) {
|
||||||
context.fillRect(this._x, this._y, this._x + this._width, this._y + this._height);
|
context.fillRect(this._x, this._y, this._width, this._height);
|
||||||
}
|
}
|
||||||
|
|
||||||
static randomOptions() {
|
static randomOptions() {
|
||||||
|
Loading…
Reference in New Issue
Block a user