Great! Do a similar video on B spline and NURBS please. Thank you
@dulanjanaperera98810 ай бұрын
Thanks for this. Very helpful. You provide all the details. Thanks again.
@austineadah284315 күн бұрын
This is helpful! Please my question is what if you to apply this a geometry of a cuboid for instance in 3D , do you need all the 3D coordinates of that cuboid or how do you select these control points?
@saulomenezes37648 ай бұрын
Obrigado! Thanks!
@andrews3047 Жыл бұрын
hii,, i am trying to do this with 3*101 points. how can I do it?
@pedromnunes2 жыл бұрын
THANK YOU!!!!!😀
@reosbeatss3793 Жыл бұрын
Hi, im trying to make this work for 5x5 - 25 points . how can I do this please ? it keeps writing me : Index in position 2 exceeds array bounds. Index must not exceed 3. Error in bezier_curve (line 44) xBezier = J(i, :)' * K(j, :) * x(i, j) + xBezier;
@prot0form775 Жыл бұрын
If you are going to change the number of points, then uPTS and wPTS should be updated, instead of 3 (like in the video) write 5. And also, the arrays x, y, z in the video are 3x3 (or uPTS x wPTS) this means that in your case they should be 5x5 arrays. 4:15
@reosbeatss3793 Жыл бұрын
@@prot0form775 Thank you ! I made it. The task for me here is to make an animation of different Bezier surfaces. Do you have any idea how to make it, please ? Thank you!
@ayushbhargava5145 Жыл бұрын
I'm tying to do it this for 4x4 control points and 20x20 cells but it gives me this error "Unable to perform assignment because the size of the left side is 1-by-4 and the size of the right side is 1-by-40."
@prot0form775 Жыл бұрын
That could be a number of things. In what line is this error happening?
@bhattner111 ай бұрын
Why can't we simply eliminate the nested for loop by writing the equations in matrix form: x_Bez = J'*x*K; y_Bez = J'*y*K; z_Bez = J'*z*K;
@prot0form77511 ай бұрын
You can't? I'm pretty sure you can do this on Matlab! It was made for matrix operations! :D