| AabbMerge Method |
Merges the specified AABBs.
Namespace: DigitalRune.Geometry.ShapesAssembly: DigitalRune.Geometry (in DigitalRune.Geometry.dll) Version: 1.18.0.0 (1.18.2.14427)
Syntax public static Aabb Merge(
Aabb first,
Aabb second
)
Public Shared Function Merge (
first As Aabb,
second As Aabb
) As Aabb
public:
static Aabb Merge(
Aabb first,
Aabb second
)
static member Merge :
first : Aabb *
second : Aabb -> Aabb
Parameters
- first
- Type: DigitalRune.Geometry.ShapesAabb
The first AABB. - second
- Type: DigitalRune.Geometry.ShapesAabb
The second AABB.
Return Value
Type:
AabbThe AABB that includes both child AABBs.
See Also