/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. * * Copyright 2015-2017 Danny Robson */ #include "aabb.hpp" #include "iostream.hpp" #include "../coord/iostream.hpp" #include "../debug.hpp" using util::geom::aabb; /////////////////////////////////////////////////////////////////////////////// namespace util::debug { template struct validator> { static bool is_valid (const aabb &b) { return all (b.lo <= b.hi); } }; } //----------------------------------------------------------------------------- template std::ostream& util::geom::operator<< (std::ostream &os, util::geom::aabb b) { return os << "[ " << b.lo << ", " << b.hi << " ]"; } //----------------------------------------------------------------------------- #define INSTANTIATE_S_T(S,T) \ namespace util::geom { template struct aabb; } \ template bool util::debug::is_valid (const aabb&); \ template std::ostream& util::geom::operator<< (std::ostream&, aabb); #define INSTANTIATE(T) \ INSTANTIATE_S_T(2,T) \ INSTANTIATE_S_T(3,T) INSTANTIATE( int32_t) INSTANTIATE( int64_t) INSTANTIATE(uint32_t) INSTANTIATE(uint64_t) INSTANTIATE(float) INSTANTIATE(double)