ChatGPT & Grasshopper, Future of patterning

Поділитися
Вставка
  • Опубліковано 27 лис 2024

КОМЕНТАРІ • 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)

  • @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.

  • @odkhuu5723
    @odkhuu5723 11 місяців тому

    thumbs up with two hands 👍👍

  • @vladislavsmirnov2252
    @vladislavsmirnov2252 Рік тому +3

    Great tutorial, thanks for sharing!

  • @alexanderyogatama707
    @alexanderyogatama707 Рік тому +1

    Great insight thank you

  • @きくきく-h8k
    @きくきく-h8k Рік тому +1

    amazing!!!

  • @azoozw
    @azoozw Рік тому +1

    Nice