C++
GE_DLLEXPIMPORT AcGeEntity3d* project( const AcGePlane& projectionPlane, const AcGeVector3d& projectDirection, const AcGeTol& tol = AcGeContext::gTol ) const;
Description
Returns the entity that is the projection of the curve onto the projection plane in the specified direction. The projectDirection vector must not be parallel to the projection plane. The returned entity may not be of the same type as the original curve and may not even be a curve (for instance, a line projects into a point if it is parallel to projectDirection). The returned entity is created with the new and it is the responsibility of the caller to delete it.
Parameters
Parameters | Description |
---|---|
projectionPlane | Input plane on which curve is to be projected |
projectDirection | Input direction in which curve is to be projected |
tol | Input tolerance |