devexpress-diagram
Version:
DevExpress Diagram Control
14 lines (11 loc) • 524 B
text/typescript
import { ShapeTypes } from "../../ShapeTypes";
import { Size } from "@devexpress/utils/lib/geometry/size";
import { ShapeDefaultDimension } from "../ShapeDescription";
import { HexagonShapeDescription } from "../General/HexagonShapeDescription";
export class PreparationShapeDescription extends HexagonShapeDescription {
constructor() {
super(true);
this.defaultSize = new Size(ShapeDefaultDimension, ShapeDefaultDimension * 0.75);
}
get key() { return ShapeTypes.Preparation; }
}