معرفی شرکت ها


cubic-bezier-spline-0.3.1


Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر

توضیحات

Create C2-continuous, non-rational cubic Bézier splines. In other words, this will approximate or interpolate a sequence of points into a sequence of non-rational cubic Bézier curves.
ویژگی مقدار
سیستم عامل -
نام فایل cubic-bezier-spline-0.3.1
نام cubic-bezier-spline
نسخه کتابخانه 0.3.1
نگهدارنده []
ایمیل نگهدارنده []
نویسنده Shay Hill
ایمیل نویسنده shay_public@hotmail.com
آدرس صفحه اصلی -
آدرس اینترنتی https://pypi.org/project/cubic-bezier-spline/
مجوز MIT
## Non-rational Bezier curves and splines (composite Bezier curves) This package exists mostly to create C2-continuous, non-rational cubic Bezier splines. In other words, this will approximate or interpolate a sequence of points into a sequence of non-rational cubic Bezier curves. Should be relatively fast, but this isn't suited for heavy math. This is for taking some points you have and making a nice-looking curve out of them. Specifically, a cubic Bezier spline, which is made from the type of curves used in SVG, fonts, and other vector-base programs. I am only interested in feature requests that directly apply to that purpose. This is not an exercise in completism. ### install pip install cubic_bezier_spline ### this package will * Evaluate, differentiate, elevate, and split non-rational Bezier curves of any degree * Construct non-rational cubic Bezier splines (open and closed, approximating and interpolating) * Evaluate and differentiate non-rational Bezier splines of any degree ### this package will not** * Work with rational Bezier splines, b-splines, NURBS, or any other generalization of Bezier curves * Decrease curve degree * Approximate curve intersections * Approximate the length of a curve * "Stroke" (move left or right) a curve<br/> ** much of the "will not" features can be found here: https://github.com/dhermes/bezier ### Public classes / functions # a c2-continuous cubic Bezier spline near the control points new_open_approximating_spline([(x0, y0), (x1, y1), ...]) # a c2-continuous cubic Bezier spline near the control points new_closed_approximating_spline([(x0, y0), (x1, y1), ...]) # a c2-continuous cubic Bezier spline through the control points new_open_interpolating_spline([(x0, y0), (x1, y1), ...]) # a c2-continuous cubic Bezier spline through the control points new_closed_interpolating_spline([(x0, y0), (x1, y1), ...]) Any of these will return a BezierSpline object. This object has a some of the usual methods (e.g., elevate, derivative, split) to help find path normals or do some light modeling, but you may be most interested in. # plot the spline at a given point, where time is 0 to # (number of input points + 1) spline(time: float) # an svg data string # (the d="" attribute of an SVG path object) spline.svg_data ### Examples Some of these use double and triple repeated points to create "knots". This isn't a special function, just a feature of Bezier math. The idea is clearer with a picture. ![spline types](doc/knot_examples.png) ### Most of the math can be found in: * A Primer on Bezier Curves<br/> https://pomax.github.io/bezierinfo/ * UCLS-Math-149-Mathematics-of-Computer-Graphics-lecture-notes<br/> https://www.stkent.com/assets/pdfs/UCLA-Math-149-Mathematics-of-Computer-Graphics-lecture-notes.pdf


نیازمندی

مقدار نام
>=1.24.2,<2.0.0 numpy
>=0.2.0,<0.3.0 paragraphs


زبان مورد نیاز

مقدار نام
>=3.9,<4.0 Python


نحوه نصب


نصب پکیج whl cubic-bezier-spline-0.3.1:

    pip install cubic-bezier-spline-0.3.1.whl


نصب پکیج tar.gz cubic-bezier-spline-0.3.1:

    pip install cubic-bezier-spline-0.3.1.tar.gz