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

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

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