added shapes
This commit is contained in:
parent
ea4eb49670
commit
355b840471
6 changed files with 81 additions and 10 deletions
14
src/shapeStyle.ts
Normal file
14
src/shapeStyle.ts
Normal 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';
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue