X-Git-Url: https://git.rohieb.name/MicroTrace.git/blobdiff_plain/dfcd78f3f458d8c4bfbc27b08ced5aae0f2e57d4..a8137256e983a49f97ff1fbecd26a1a0372f7b0b:/InfinitePlane.cxx diff --git a/InfinitePlane.cxx b/InfinitePlane.cxx index f73d835..c11fb8a 100644 --- a/InfinitePlane.cxx +++ b/InfinitePlane.cxx @@ -31,3 +31,15 @@ InfinitePlane::GetNormal(Ray& ray) { return m_n; } + +Box +InfinitePlane::CalcBounds() +{ + return Box(); +} + +bool +InfinitePlane::InVoxel(const Box& box) +{ + return false; +}