Esempio n. 1
0
 public Segment RotateAroundPoint(Point center, double angle)
 {
     return(new Segment(A.RotateAroundPoint(center, angle),
                        B.RotateAroundPoint(center, angle)));
 }
Esempio n. 2
0
 public Line RotateAroundPoint(Point center, double angle)
 {
     return(new Line(A.RotateAroundPoint(center, angle),
                     B.RotateAroundPoint(center, angle)));
 }