It is probably a very newbie question, but I wonder what is the benefit of using RhinoScriptSyntax in Python in opposite directly using Rhino common API? The simple example it’s possible to make a point using both ways (Rhino. and RhinoScriptSyntax.) but in which cases RhinoScriptSyntax is helpful or vital so to say?
import rhinoscriptsyntax as rs
from Rhino import Geometry
Pt0 = Geometry.Point3d(1,1,1)
Pt1 = rs.CreatePoint(1,1,1)
6 posts - 4 participants