algorithmic modeling for Rhino
I am trying a simple python script in GH to fillet surfaces.
but I have error message like this:
Runtime error (ValueErrorException): Could not convert None to a Point2d
import rhinoscriptsyntax as rs
if rs.IsSurface(x):
if rs.IsSurface(y):
if r:
a= rs.FilletSurfaces(x,y,r)
it would be much appreciated if anyone can advise on this.
thanks
Tags:
Here it is
the Python script was lucking two more arguments that's why it returns an error,
now this should work fine :
if rs.IsSurface(x):
if rs.IsSurface(y):
if r:
a = rs.FilletSurfaces(x, y, r, srfc1_uv, srfc2_uv)
here r the files
Welcome to
Grasshopper
Added by Parametric House 0 Comments 0 Likes
Added by Parametric House 0 Comments 0 Likes
Added by Parametric House 0 Comments 0 Likes
Added by Parametric House 0 Comments 0 Likes
© 2024 Created by Scott Davidson. Powered by