Core2D.Path.Segments.XPolyQuadraticBezierSegment.Create C# (CSharp) Метод

Create() публичный статический Метод

Creates a new XPolyQuadraticBezierSegment instance.
public static Create ( ImmutableArray points, bool isStroked, bool isSmoothJoin ) : XPolyQuadraticBezierSegment
points ImmutableArray The points array.
isStroked bool The flag indicating whether shape is stroked.
isSmoothJoin bool The flag indicating whether shape is smooth join.
Результат XPolyQuadraticBezierSegment
        public static XPolyQuadraticBezierSegment Create(ImmutableArray<XPoint> points, bool isStroked, bool isSmoothJoin)
        {
            return new XPolyQuadraticBezierSegment()
            {
                Points = points,
                IsStroked = isStroked,
                IsSmoothJoin = isSmoothJoin
            };
        }
XPolyQuadraticBezierSegment