/* * 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 namespace util { /** * A pure two-dimensional size, without positioning */ template struct extent : public coord::base { using coord::base::base; extent () = default; extent (vector); T area (void) const; T diameter (void) const; template U aspect (void) 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; }; typedef extent<2,intmax_t> extent2i; typedef extent<2,size_t> extent2u; typedef extent<2,float> extent2f; typedef extent<2,double> extent2d; template std::ostream& operator<< (std::ostream&, util::extent); } #include "extent.ipp" #endif