##############################
###  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 !!!                                              
sys.path.append("P:/DM2/")     ### add path where "DM_lib.py" can be found !!!                                              
sys.path.append("P:/WWW/limafi/dm2")     ### add path where "DM_lib.py" can be found !!!                                              
import DM_lib as dm        ### reload(dm)    
############################## 

dm.eAA()

#vektor: richtung und laenge 
#kreis erstellen 
rad = 5.0
vec = [rad,0, 0]
rs.AddPoint(vec)
#fuer naechsten punkt vektor rotieren 
vecX = rs.VectorRotate(vec, 10.0,[0,0,1]) 
#letzter vektor steht fuer die zachse um die gedreht wirdr
rs.AddPoint(vecX)

