Svg.SvgPathBuilder.ToAbsolute C# (CSharp) Method

ToAbsolute() private static method

Creates point with absolute coorindates.
private static ToAbsolute ( float x, float y, SvgPathSegmentList segments, bool isRelativeBoth ) : PointF
x float Raw X-coordinate value.
y float Raw Y-coordinate value.
segments SvgPathSegmentList Current path segments.
isRelativeBoth bool true if and contains relative coordinate values, otherwise false.
return System.Drawing.PointF
        private static PointF ToAbsolute(float x, float y, SvgPathSegmentList segments, bool isRelativeBoth)
        {
            return ToAbsolute(x, y, segments, isRelativeBoth, isRelativeBoth);
        }

Same methods

SvgPathBuilder::ToAbsolute ( float x, float y, SvgPathSegmentList segments, bool isRelativeX, bool isRelativeY ) : PointF