Svg.SvgPathBuilder.ToAbsolute C# (CSharp) 메소드

ToAbsolute() 개인적인 정적인 메소드

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.
리턴 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