Create a BEZIER SURFACE in PYTHON || TUTORIAL

Поделиться
HTML-код
  • Опубликовано: 5 сен 2024
  • 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:
    paulbourke.net/...
    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:
    www.jetbrains....
    STL MATLAB Tutorial:
    • Write an STL (ASCII) F...
    Book:
    An Introduction to NURBS with a Historical Perspective
    www.elsevier.c...
    -----------------------------------------------------PLAYLISTS---------------------------------------------
    FILE FORMATS in PYTHON
    • PYTHON: File Formats
    SPLINES in PYTHON
    • PYTHON: Splines
    -----------------------------------PYTHON DOCUMENTATION-------------------------------------
    NUMPY Library:
    numpy.org/doc/...
    math.factorial() documentation:
    www.sharpsight...) documentation:
    numpy.org/doc/...
    MATPLOTLIB Library:
    matplotlib.org...
    Software: Python 3

Комментарии • 11

  • @calvinkielas-jensen6665
    @calvinkielas-jensen6665 Год назад +1

    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].

    • @prot0form775
      @prot0form775  Год назад

      That is a very useful and detailed advice for the future. Thank you so much!

  • @happymonster1242
    @happymonster1242 Год назад +1

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

  • @abrarjahinnafi1634
    @abrarjahinnafi1634 Год назад +1

    You're very articulated in your speech.

  • @pedromnunes
    @pedromnunes Год назад +2

    thank you

  • @Linkz64
    @Linkz64 Год назад +1

    This is a great video

  • @korigamik
    @korigamik Год назад +1

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

    • @prot0form775
      @prot0form775  Год назад +1

      I used Premier Pro for the video and the equation writer in Word for the equations.

  • @sudhanshu149
    @sudhanshu149 Год назад

    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 ❤🙏

  • @sudhanshu149
    @sudhanshu149 Год назад

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