CS-Coursework/website/ui_elements/canvas.js

21 lines
328 B
JavaScript
Raw Normal View History

2022-09-29 15:11:33 +01:00
class Canvas {
constructor() {
this.x = 0;
this.y = 0;
this.canvas = createCanvas(0, 0);
}
center() {
this.canvas.position(this.x, this.y);
}
resize() {
this.canvas.resize(windowWidth, windowHeight);
}
disable() {
this.canvas.resize(0, 0);
}
}