@djnelson75 wrote:
import rhinoscriptsyntax as rs LineList = x PtList = y result=[] count = 0 for a in LineList: for b in PtList: test = rs.IsPointOnCurve(a,b) result[count].append(test) count += 1 a = resultCan anyone tell me why this doesn't work.
Posts: 4
Participants: 2
