fantasy/painting/shape.js

32 lines
647 B
JavaScript

import Color from "./color.js";
class Shape {
className = "Shape";
color;
constructor(x, y, color) {
this._x = x;
this._y = y;
this.color = color;
}
draw(context) {
throw new Error("A pure virtual method call of a shape " + this.className);
}
static randomOptions() {
return {
x: Math.floor(Math.random() * maxX),
y: Math.floor(Math.random() * maxY),
color: Color.random()
}
}
static fromOptions(o) {
return new Shape(o.x, o.y, o.color);
}
}
const maxX = 1000;
const maxY = 1000;
export default Shape;