Determine if this Outline intersects the input Outline to within a specified tolerance.
Namespace: Autodesk.Revit.DB
Assembly: RevitAPI (in RevitAPI.dll) Version: 22.0.0.0 (22.1.1.0)
Since:
2011
Syntax
| C# |
|---|
public bool Intersects(
Outline outline,
double tolerance
) |
| Visual Basic |
|---|
Public Function Intersects ( _
outline As Outline, _
tolerance As Double _
) As Boolean |
| Visual C++ |
|---|
public:
bool Intersects(
Outline^ outline,
double tolerance
) |
Parameters
- outline
- Type: Autodesk.Revit.DB..::..Outline
The outline to test for intersection with this one.
- tolerance
- Type: System..::..Double
The tolerance to use when determining intersection. Defaults to zero.
Return Value
True if the given outline intersects this outline.
Remarks
Exceptions
See Also