PlaneSweepDelegate Delegate

Callback delegate used for testing object agains each other in a plane sweep.
public delegate PlaneSweepResult PlaneSweepDelegate( 
   IExtents2d o1
   IExtents2d o2
   int id1
   int id2
   ref List<PlaneSweepIntersection> result 
)

Parameters

o1
IExtents2d

The first object to test.

o2
IExtents2d

The second object to test.

id1
int

User id of the first object.

id2
int

User id of the second object.

result
List<PlaneSweepIntersection>

Append any result data to this array.

Return Value

PlaneSweepResult

Should return a combination of PlaneSweepResult flags, see this enum for details.

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8

In this article

Definition