public RoiRectElement(float x, float y, float w, float h, float angle = 0f) : base(x, y, w, h, angle)
 {
     DragHandleCollection = new DragHandleCollection();
     DragHandleCollection.AddDefaultDragHandle();
 }
Exemple #2
0
 public RoiImageElement(Bitmap image, RectangleF srcRect, RectangleF dstRect) : base(image, srcRect, dstRect)
 {
     DragHandleCollection = new DragHandleCollection();
     DragHandleCollection.AddDefaultDragHandle();
 }
 public RoiRectElement(RectangleF rect, float angle = 0f) : base(rect, angle)
 {
     DragHandleCollection = new DragHandleCollection();
     DragHandleCollection.AddDefaultDragHandle();
 }
 public RoiRingElement(PointF cpt, float sradius, float eradius) : base(cpt, sradius, eradius)
 {
     DragHandleCollection = new DragHandleCollection();
     DragHandleCollection.AddDefaultDragHandle();
 }