lauchpioos/src/shapeStyle.ts

16 lines
322 B
TypeScript
Raw Normal View History

2021-11-26 22:07:28 +00:00
module Util
2021-11-26 18:43:48 +00:00
{
2021-11-26 22:07:28 +00:00
export class ShapeStyle
2021-11-26 18:43:48 +00:00
{
2021-11-26 22:07:28 +00:00
public strokeWidth: number;
public strokeColor: string;
public fillColor: string;
constructor()
{
this.strokeWidth = 1;
this.strokeColor = '#000000';
this.fillColor = '#00000000';
}
2021-11-26 18:43:48 +00:00
}
}