Create a BEZIER CURVE in PYTHON || TUTORIAL

แชร์
ฝัง
  • เผยแพร่เมื่อ 26 พ.ย. 2024

ความคิดเห็น • 7

  • @VeniQs
    @VeniQs ปีที่แล้ว +4

    my profesor couldnt explain it in 1.5h, and you did that in less than 10 minutes, great job

  • @mikezxd6025
    @mikezxd6025 ปีที่แล้ว +2

    This is beautiful...

  • @vasanthkumarkallannavar7594
    @vasanthkumarkallannavar7594 ปีที่แล้ว

    @ 3:27 why creation of matrix of zero, can we skip it? use other logic there?

    • @prot0form775
      @prot0form775  ปีที่แล้ว

      I'm pretty sure you can do this with other logic, but the main reason we create that matrix with 0 values first is because in the for loop, you have:
      xbezier = xbezier + something.
      You need xbezier to be declared beforehand. The reason we populate it with zeros, is that since we are adding stuff to xbezier every loop, an initial value of 0 will not change anything. If we were multiplying, we would use 1s instead. Hope this helps.

    • @vasanthkumarkallannavar7594
      @vasanthkumarkallannavar7594 ปีที่แล้ว

      Ya, by the way thank u for video, I was trying to hard code for b spline after coding all intervals ,I was not able to get or understand that basis function for different values of u.. How and what...... Please I beg u do a video on B spline hard code in python.. Because I am m tech student. I want doing projects on IGA SO I need to do it... And if have any video or materials of calculation of b spline do suggest.

    • @prot0form775
      @prot0form775  ปีที่แล้ว

      @vasanthkumarkallannavar7594 I'm preparing a series of videos for B-splines, but is a tough concept to grasp, so as soon as I get it working I'll post it.