/* * This file is part of libgim. * * libgim is free software: you can redistribute it and/or modify it under the * terms of the GNU General Public License as published by the Free Software * Foundation, either version 3 of the License, or (at your option) any later * version. * * libgim is distributed in the hope that it will be useful, but WITHOUT ANY * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more * details. * * You should have received a copy of the GNU General Public License * along with libgim. If not, see . * * Copyright 2010-2012 Danny Robson */ #include "extent.hpp" #include "debug.hpp" #include "maths.hpp" #include using namespace util; //----------------------------------------------------------------------------- template extent::extent (const T _width, const T _height): w (_width), h (_height) { ; } template extent::extent (const extent &rhs): w (rhs.w), h (rhs.h) { ; } template extent& extent::operator= (const extent &rhs) { w = rhs.w; h = rhs.h; return *this; } //----------------------------------------------------------------------------- template T extent::diameter (void) const { return (T)sqrt (w * w + h * h); } template T extent::area (void) const { return w * h; } //----------------------------------------------------------------------------- template double extent::aspect (void) const { return static_cast (w) / h; } //----------------------------------------------------------------------------- template bool extent::empty (void) const { return almost_equal (area(), 0); } //----------------------------------------------------------------------------- template bool extent::operator ==(const extent& rhs) const { return almost_equal (w, rhs.w) && almost_equal (h, rhs.h); } //----------------------------------------------------------------------------- template void extent::sanity (void) const { CHECK (w >= 0 && h >= 0); } namespace util { template <> void extent::sanity (void) const { return; } template <> void extent::sanity (void) const { return; } } //----------------------------------------------------------------------------- namespace util { template struct extent; template struct extent; template struct extent; }