Statt Table nun canvas zur rendern im Frontend

This commit is contained in:
2025-04-16 11:51:30 +02:00
parent 868ccc5649
commit f2c3496e71
5 changed files with 84 additions and 62 deletions

View File

@@ -0,0 +1,12 @@
class Overlay{
constructor(src = null, deg = 0){
this.src = src;
this.deg = deg;
if(!this.src) return;
this.image = new Image();
this.image.src = src;
}
}
export default Overlay