I use this code to select two lines. Then I am trying to place a point in the middle of each line and a point in the intersection between those two lines. Also, is there any option to offset a point
import rhinoscriptsyntax as rs
import math
import Rhino as rc
first_line = rs.GetObjects(“Select first edge”, rs.filter.curve, True, True)
perp_line = rs.GetObjects(“select perpendicular edge”, rs.filter.curve, True, True)
4 posts - 2 participants