/// <summary> /// Reflects the in the line given. /// </summary> /// <param name="Line">The line to reflect through.</param> public override void Reflect(C2DLine Line) { P1.Reflect(Line); P2.Reflect(Line); P3.Reflect(Line); }
/// <summary> /// Reflects the triangle. /// </summary> /// <param name="Point">The point to reflect through.</param> public override void Reflect(C2DPoint Point) { P1.Reflect(Point); P2.Reflect(Point); P3.Reflect(Point); }