Computes the spatial intersection of two objects.
Namespace:
ceometric.VectorGeometry
Assembly:
ceometric.VectorGeometry (in ceometric.VectorGeometry.dll) Version: 1.6.0.0 (1.6.0.0)
Syntax
| Visual Basic (Declaration) |
|---|
Public Function Intersect3d ( _
circle As Circle _
) As Edge |
| Visual C++ |
|---|
public:
Edge^ Intersect3d(
Circle^ circle
) |
Return Value
Returns
- the intersection edge of the plane and circle if the plane intersects circle and
- null if the plane does not intersect circle. In particular, it returns
- null if the plane is parallel to circle or
- null if the plane is coplanar to circle
See Also