This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import rhinoscriptsyntax as rs | |
import Rhino.Geometry as rg | |
from clr import AddReference as addr | |
addr("Grasshopper") | |
from System import Object | |
from Grasshopper import DataTree | |
from Grasshopper.Kernel.Data import GH_Path |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import rhinoscriptsyntax as rs | |
step = 0.00000001 | |
pApos = rs.EvaluateCurve(x,0) | |
pBpos = rs.EvaluateCurve(x,0.00000001) | |
pA = rs.AddPoint(pApos) | |
pB = rs.AddPoint(pBpos) | |
a = [] | |
right = False |
NewerOlder