Computes the spatial intersection of two objects.
Namespace:
ceometric.VectorGeometryAssembly: ceometric.VectorGeometry (in ceometric.VectorGeometry.dll) Version: 1.6.0.0 (1.6.0.0)
Syntax
| C# |
|---|
public Edge Intersect3d( Circle circle ) |
| Visual Basic (Declaration) |
|---|
Public Function Intersect3d ( _ circle As Circle _ ) As Edge |
| Visual C++ |
|---|
public: Edge^ Intersect3d( Circle^ circle ) |
Parameters
- circle
- Type: ceometric.VectorGeometry..::.Circle
A circle.
Return Value
Returns- the intersection edge of the ellipse and circle if the ellipse intersects circle
- null if the ellipse does not intersect circle. In particular, it returns
- null if the ellipse is coplanar or parallel to circle
Remarks
The intersection edge has zero length if circle touches the ellipse in one point.