public VisualRectangle(IRectangularMapEntity mapEntity) : base(mapEntity)
 {
     _rectangleSource = mapEntity;
     _corners         = new PointCollection();
     for (int i = 0; i < 4; i++)
     {
         _corners.Add(new Point());
     }
     UpdateCorners();
 }
Exemplo n.º 2
0
 public RectangleElement(IRectangularMapEntity mapEntity) : base(mapEntity)
 {
     _rectangleSource = mapEntity;
 }