ChatGPT & Grasshopper, Future of patterning

แชร์
ฝัง
  • เผยแพร่เมื่อ 16 ก.ย. 2024
  • Creating the Torus Knot pattern in Rhino Grasshopper with the help of ChatGPT

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

  • @andyyenlinlee5193
    @andyyenlinlee5193 ปีที่แล้ว +3

    Thank you! And maybe code below helps you others.
    import rhinoscriptsyntax as rs
    import math
    def torus_knot(p, q, radius, height, n_points):
    points = []
    for i in range(n_points):
    t = 2 * math.pi * i / n_points
    x = (radius + height * math.cos(q * t)) * math.cos(p * t)
    y = (radius + height * math.cos(q * t)) * math.sin(p * t)
    z = height * math.sin(q * t)
    points.append([x, y, z])
    return points
    points = torus_knot(3, 4, 10, 5, 50)
    pts = []
    for point in points:
    pt = rs.AddPoint(point)
    pts.append(pt)

  • @odkhuu5723
    @odkhuu5723 9 หลายเดือนก่อน

    thumbs up with two hands 👍👍

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

    The python code was generated by ChatGPT, but the dialogue & audio are also all generated by it. You can tell because at 4:30 it mentions "patterns" related to fabric/garment. I wouldn't be surprised if the comments were from bots too.

  • @alexanderyogatama707
    @alexanderyogatama707 ปีที่แล้ว +1

    Great insight thank you

  • @vladislavsmirnov2252
    @vladislavsmirnov2252 ปีที่แล้ว +3

    Great tutorial, thanks for sharing!

    • @catcharunjames
      @catcharunjames  ปีที่แล้ว +1

      Thank you Vladislav Smirnov👍♥

  • @きくきく-h8k
    @きくきく-h8k ปีที่แล้ว +1

    amazing!!!

  • @azoozw
    @azoozw ปีที่แล้ว +1

    Nice