Vixen
02b45cc4
csharp
public enum ContainmentType

How one volume sits relative to another.

No guide page documents this yet — the page shows what the code says about itself.

Remarks

Culling needs all three, not a bool: a fully contained subtree can skip testing its children entirely, which is most of what a hierarchy buys.

Fields and properties (3)

  • Disjoint

    No overlap at all.

  • Contains

    Entirely inside.

  • Intersects

    Partly inside — straddling the boundary.

Used by (6)

  • BoundingBoxVixen.Core.Mathematics
  • BoundingFrustumVixen.Core.Mathematics
  • BoundingSphereVixen.Core.Mathematics
  • CullJobVixen.Rendering
  • VisibilityGroupTestsVixen.Rendering.Tests
  • VolumeTestsVixen.Core.Mathematics.Tests