Computes the spatial intersection of two objects.
Namespace:
ceometric.VectorGeometryAssembly: ceometric.VectorGeometry (in ceometric.VectorGeometry.dll) Version: 1.8.0.0 (1.8.0.0)
Syntax
C# |
---|
public Point Intersect3d( Line line ) |
Visual Basic (Declaration) |
---|
Public Function Intersect3d ( _ line As Line _ ) As Point |
Visual C++ |
---|
public: Point^ Intersect3d( Line^ line ) |
Parameters
- line
- Type: ceometric.VectorGeometry..::.Line
A line.
Return Value
Returns- the intersection point of the ellipse and line if the ellipse intersects line
- null if the ellipse does not intersect line. In particular, it returns
- null if the ellipse is coplanar or parallel to line
Remarks
Use Intersect2d(Line) for coplanar intersection.