예제 #1
0
        private PointF GetLeftBottomEdge()
        {
            var p = new PointF(-Width / 2, Height / 2);

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

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