Frustum.contains

AABB vs frustum intersection.

  1. bool contains(vec3!T point)
  2. int contains(Sphere!(T, 3) sphere)
  3. int contains(box3!T box)
    struct Frustum(T)
    @nogc pure const nothrow
    int
    contains
    ()
    if (
    isFloatingPoint!T
    )

Return Value

Type: int

Frustum.OUTSIDE, Frustum.INTERSECT or Frustum.INSIDE.

Meta