added shapes

This commit is contained in:
Lauchmelder 2021-11-26 19:43:48 +01:00
parent ea4eb49670
commit 355b840471
6 changed files with 81 additions and 10 deletions

14
src/shapeStyle.ts Normal file
View file

@ -0,0 +1,14 @@
export class ShapeStyle
{
public strokeWidth: number;
public strokeColor: string;
public fillColor: string;
constructor()
{
this.strokeWidth = 1;
this.strokeColor = '#000000';
this.fillColor = '#00000000';
}
}