Perspex.Media.StreamGeometryContext.QuadTo C# (CSharp) Method

QuadTo() public method

Draws a quadratic Bezier curve to the specified point
public QuadTo ( Point control, Point endPoint ) : void
control Point The control point used to specify the shape of the curve.
endPoint Point The destination point for the end of the curve.
return void
        public void QuadTo(Point control, Point endPoint)
        {
            _impl.QuadTo(control, endPoint);
        }