示例#1
0
 /// <summary>
 /// Rotates this to the right about the origin provided.
 /// </summary>
 /// <param name="dAng">The angle through which to rotate.</param>
 /// <param name="Origin">The origin about which to rotate.</param>
 public override void RotateToRight(double dAng, C2DPoint Origin)
 {
     P1.RotateToRight(dAng, Origin);
     P2.RotateToRight(dAng, Origin);
     P3.RotateToRight(dAng, Origin);
 }