/*
* 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-2015 Danny Robson
*/
#include "extent.hpp"
#include "debug.hpp"
#include "maths.hpp"
#include
///////////////////////////////////////////////////////////////////////////////
template
util::extent::extent (const T _width, const T _height):
w (_width),
h (_height)
{
CHECK_GE (w, 0);
CHECK_GE (h, 0);
}
//-----------------------------------------------------------------------------
template
util::extent::extent (T t):
extent (t, t)
{ ; }
//-----------------------------------------------------------------------------
template
util::extent::extent (vector<2,T> _v):
extent (_v.x, _v.y)
{ ; }
//-----------------------------------------------------------------------------
template
util::extent::extent (const util::extent &rhs):
w (rhs.w),
h (rhs.h)
{ ; }
//-----------------------------------------------------------------------------
template
util::extent&
util::extent::operator= (const util::extent &rhs)
{
w = rhs.w;
h = rhs.h;
return *this;
}
///////////////////////////////////////////////////////////////////////////////
template
T
util::extent::diameter (void) const
{
return static_cast (sqrt (w * w + h * h));
}
//-----------------------------------------------------------------------------
template
T
util::extent::area (void) const
{
return w * h;
}
///////////////////////////////////////////////////////////////////////////////
template
util::extent
util::extent::expanded (util::vector<2,T> mag) const
{
return {
w + mag.x,
h + mag.y
};
}
//-----------------------------------------------------------------------------
template
util::extent
util::extent::expanded (T t) const
{
return expanded (util::vector<2,T> {t});
}
///////////////////////////////////////////////////////////////////////////////
template
float
util::extent::aspect (void) const
{
return static_cast (w) / static_cast (h);
}
///////////////////////////////////////////////////////////////////////////////
template
bool
util::extent::empty (void) const
{
return almost_equal (area(), 0);
}
///////////////////////////////////////////////////////////////////////////////
template
T&
util::extent::operator[] (size_t idx)
{
switch (idx) {
case 0: return w;
case 1: return h;
default:
unreachable ();
}
}
//-----------------------------------------------------------------------------
template
const T&
util::extent::operator[] (size_t idx) const
{
switch (idx) {
case 0: return w;
case 1: return h;
default:
unreachable ();
}
}
//-----------------------------------------------------------------------------
template
size_t
util::extent::size (void) const
{
return 2u;
}
///////////////////////////////////////////////////////////////////////////////
template
bool
util::extent::operator ==(const extent& rhs) const
{
return almost_equal (w, rhs.w) &&
almost_equal (h, rhs.h);
}
///////////////////////////////////////////////////////////////////////////////
template
const util::extent util::extent::MIN {
0, 0
};
//-----------------------------------------------------------------------------
template
const util::extent util::extent::MAX {
std::numeric_limits::max (),
std::numeric_limits::max ()
};
///////////////////////////////////////////////////////////////////////////////
namespace debug {
template
struct validator {
static bool is_valid (const util::extent &e)
{
return e.w >= 0 && e.h >= 0;
}
};
}
template bool debug::valid (const util::extent&);
template bool debug::valid (const util::extent&);
template bool debug::valid (const util::extent&);
template bool debug::valid (const util::extent&);
template bool debug::valid (const util::extent&);
///////////////////////////////////////////////////////////////////////////////
template
std::ostream&
util::operator<< (std::ostream &os, util::extent e)
{
os << "[" << e.w << ", " << e.h << "]";
return os;
}
template std::ostream& util::operator<< (std::ostream&, util::extent);
template std::ostream& util::operator<< (std::ostream&, util::extent);
template std::ostream& util::operator<< (std::ostream&, util::extent);
template std::ostream& util::operator<< (std::ostream&, util::extent);
template std::ostream& util::operator<< (std::ostream&, util::extent);
//-----------------------------------------------------------------------------
namespace util {
template struct extent;
template struct extent;
template struct extent;
template struct extent;
}