#dm2 hu2 """Provides a scripting component. Inputs: x: The x script variable y: The y script variable Output: a: The a output variable""" __author__ = "mmtom" __version__ = "2024.10.17" import rhinoscriptsyntax as rs import Rhino.Geometry as rg #creating a list points = [] #creating nested loops for x in range: for y in range: fro z in range: point = rg.Point3d(x, y, z) points.append(point) #output values a = points