/// <summary>Adds a Cubic Bezier Segment to the current Path.</summary> /// <remarks> /// Adds a Cubic Bezier Segment to the current Path. The Bezier Segment /// connects the current last Point and the given endPoint. /// </remarks> internal virtual void BezierTo(com.epl.geometry.Point2D controlPoint1, com.epl.geometry.Point2D controlPoint2, com.epl.geometry.Point2D endPoint) { m_impl.BezierTo(controlPoint1, controlPoint2, endPoint); }