C# 클래스 csCommon.Types.Geometries.AdvancedGeometry.GeometryTransformers.SmoothBezierTransformer.OpenBezierSpline

Bezier Spline methods
파일 보기 프로젝트 열기: TNOCS/csTouch

공개 메소드들

메소드 설명
GetCurveControlPoints ( System knots, System &firstControlPoints, System &secondControlPoints ) : void

Get open-ended Bezier Spline Control Points.

비공개 메소드들

메소드 설명
GetFirstControlPoints ( double rhs ) : double[]

Solves a tridiagonal system for one of coordinates (x or y) of first Bezier control points.

메소드 상세

GetCurveControlPoints() 공개 정적인 메소드

Get open-ended Bezier Spline Control Points.
/// parameter must be not null. /// array must contain at least two points.
public static GetCurveControlPoints ( System knots, System &firstControlPoints, System &secondControlPoints ) : void
knots System Input Knot Bezier spline points.
firstControlPoints System Output First Control points /// array of knots.Length - 1 length.
secondControlPoints System Output Second Control points /// array of knots.Length - 1 length.
리턴 void