public Parallelogram() { shape = new ShapeModel(); shape.Angle = 30; shape.ShapeTypeEnum = ShapeModel.ShapeType.PARALLELOGRAM; }
public Circle() { shape = new ShapeModel(); shape.ShapeTypeEnum = ShapeModel.ShapeType.CIRCLE; }
public Rectangle() { shape = new ShapeModel(); shape.ShapeTypeEnum = ShapeModel.ShapeType.RECTANGLE; }
public Polygon() { shape = new ShapeModel(); shape.ShapeTypeEnum = ShapeModel.ShapeType.POLYGON; }
public Square() { shape = new ShapeModel(); shape.ShapeTypeEnum = ShapeModel.ShapeType.SQUARE; }