Create a BEZIER SURFACE in PYTHON || TUTORIAL

preview_player
Показать описание
That Bezier surface equation looks scary but hopefully I simplified this enough. Bezier surfaces by themselves aren't that useful, so I will be covering B-Splines next.

Bezier Surface explanation and math:

Hope you found the video useful, I am learning programming myself and doing these little videos as practice exercises. If you have a suggestions, by all means, let me know.

PyCharm IDE:

STL MATLAB Tutorial:

Book:
An Introduction to NURBS with a Historical Perspective

------------------------------------------------------PLAYLISTS----------------------------------------------
FILE FORMATS in PYTHON
SPLINES in PYTHON

------------------------------------PYTHON DOCUMENTATION--------------------------------------
NUMPY Library:
MATPLOTLIB Library:

Software: Python 3
Рекомендации по теме
Комментарии
Автор

Heads up, numpy does not recommend using the matrix class anymore and it may be deprecated in the future. You can transpose arrays using the ".T" convenience function. By definition, you can't transpose a 1D array, but you can make a 1D array 2D by using the function np.atleast_2D or slicing the variable with np.newaxis, e.g., A[:, np.newaxis].

calvinkielas-jensen
Автор

You're very articulated in your speech.

abrarjahinnafi
Автор

Awesome work, thanks for the clear explanations! Was very helpful for getting a Bezier surface calculation working in my Java project

happymonster
Автор

This is great. Can you tell what use to edit the video and the cool math equations?

korigamik
Автор

Please Make a Videos and python code for B-spline Basis functions and using this Basis functions we can able to draw B-spline Curve.
Please It's Necessary ❤🙏

sudhanshu
Автор

I coded B-spline Basis functions in python.
Can you review it?
Tell me where I can send it you.

sudhanshu