Hi all,
I have an interesting issue with the findAt command.
I'm trying to select 2*m number of edges (both left and right) in a python script:
# Ld are the layer points
Lpts=[]
m=0
for m in range(len(Ld)-1):
Lpts.append(((max(side), (Ld[m]+(Ld[m+1]-Ld[m])/2), 0),),)...