/* * 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 2010-2015 Danny Robson */ #ifndef __UTIL_EXTENT_HPP #define __UTIL_EXTENT_HPP #include "coord.hpp" #include "vector.hpp" #include "point.hpp" #include namespace util { /** * A pure two-dimensional size, without positioning */ template struct extent : public coord::base { using coord::base::base; extent () = default; explicit extent (vector); T area (void) const; T diameter (void) const; template U aspect (void) const; template bool includes (util::point) const; extent expanded (vector) const; extent expanded (T) const; extent contracted (vector) const; extent contracted (T) const; bool empty (void) const; static const extent MAX; static const extent MIN; }; // convenience typedefs template using extent2 = extent<2,T>; template using extent3 = extent<3,T>; typedef extent2 extent2i; typedef extent2 extent2u; typedef extent2 extent2f; typedef extent2 extent2d; typedef extent3 extent3u; typedef extent3 extent3f; template std::ostream& operator<< (std::ostream&, util::extent); } #include "extent.ipp" #endif