AndreaNegro953
Results
1
issues of
AndreaNegro953
I'm having problems with evaluating the intersection of a line and a cylinder. I use the following code: ``` from Geometry3D import * def intersection_v2(xp,yp,zp,px,py,pz,xt,yt,zt,rt,ht): part = Line(Point(xp,yp,zp),Vector(px,py,pz)) tank =...