DiscussionsIssue archiveOther usage issues

Archived discussion

Project a Edge on a Surface by a user-defined direction...

Other usage issuesWed, 10/14/2009 - 10:182 replies

Browse this forum
QuestionAuthor

I want to project a edge on a surface by a user-defined direction.

I found a "GeomProjLib::Project(aCurve, aSurface)".
In this algorithm, the direction of projection is defaultly defined as the normal of the surface.
But, as I mensioned, I wanna define the projection direction.

Kind regards.

Discussion

2 archived replies

Posts are displayed in their archived order.

01Commenter-1

See the BrepProj module:

Standard_EXPORT BRepProj_Projection (const TopoDS_Shape &Lsh, const TopoDS_Shape &Ssh, const gp_Dir &D, const Standard_Boolean FaceBounds=Standard_True)
Makes a Cylindrical projection Lsh on Ssh
.
Standard_EXPORT BRepProj_Projection (const TopoDS_Shape &Lsh, const TopoDS_Shape &Ssh, const gp_Pnt &P, const Standard_Boolean FaceBounds=Standard_True)
Makes a Conical projection Lsh on Ssh

02Author

Thank you for your help.

I think it is working.