############################## ### DM2_w24 hu_03_setUp ### ### _diag / 2024 10 17 ### ############################## import rhinoscriptsyntax as rs import random, time, sys ### sys.path.append("P:/") ### add path where "DM_lib.py" can be found !!! import DM_lib as dm ### reload(dm) ############################## center_point = (0,0,0) radius = 15 sphere = rs.AddSphere( center_point, radius) if sphere: print ( "Kugel erfolgreich erstellt.") else: print ("Fehler beim Erstellen der Kugel.")