Module raytracer

Interface BoundingVolume

All Known Implementing Classes:
BoundingBox, BoundingSphere

public interface BoundingVolume
  • Method Details

    • getMinX

      float getMinX()
    • getMaxX

      float getMaxX()
    • getMinY

      float getMinY()
    • getMaxY

      float getMaxY()
    • getMinZ

      float getMinZ()
    • getMaxZ

      float getMaxZ()
    • hasIntersection

      boolean hasIntersection(Ray ray)
    • isInsideBox

      boolean isInsideBox(Vector3f minValues, Vector3f maxValues)