Ejemplo n.º 1
0
        private PointF GetLeftBottomEdge()
        {
            var p = new PointF(-Width / 2, Height / 2);

            p.Rotate(Angle);
            p.Translate(CenterX, CenterY);
            return(p);
        }
Ejemplo n.º 2
0
        private PointF GetRigthTopEdge()
        {
            var p = new PointF(Width / 2, -Height / 2);

            p.Rotate(Angle);
            p.Translate(CenterX, CenterY);
            return(p);
        }