Bezier Curve Function
Versión 1.0.0.0 (1,37 KB) por
Prakash Manandhar
Vectorized function to calculate Bezier Curve
This function constructs a Bezier curve from given control points. P is a vector of control points. N is the number of points to calculate.
Example:
P = [0 0; 1 1; 2 5; 5 -1];
x = (0:0.0001:5);
y = BezierCurve(length(x), P);
plot(x, y, P(:, 1), P(:, 2), 'x-', 'LineWidth', 2); set(gca, 'FontSize', 16)
Citar como
Prakash Manandhar (2024). Bezier Curve Function (https://www.mathworks.com/matlabcentral/fileexchange/34902-bezier-curve-function), MATLAB Central File Exchange. Recuperado .
Compatibilidad con la versión de MATLAB
Se creó con
R2010b
Compatible con cualquier versión
Compatibilidad con las plataformas
Windows macOS LinuxCategorías
Más información sobre Interpolation en Help Center y MATLAB Answers.
Etiquetas
Agradecimientos
Inspirado por: Bezier Curve Plotter
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!Descubra Live Editor
Cree scripts con código, salida y texto formateado en un documento ejecutable.
Versión | Publicado | Notas de la versión | |
---|---|---|---|
1.0.0.0 |