/* Copyright 2014 Michele "King_DuckZ" Santullo This file is part of CloonelJump. CloonelJump 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. CloonelJump 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 CloonelJump. If not, see . */ #ifndef id5DB098DAA5534A0A869DEF23888F96B0 #define id5DB098DAA5534A0A869DEF23888F96B0 #include "vector.hpp" #include "compatibility.h" #include #include #include namespace cloonel { template typename std::common_type::type dot ( const Vector& parA, const Vector& parB ) a_pure; template Vector::type, 3> cross ( const Vector& parA, const Vector& parB ) a_pure; template T len ( const Vector& parVector ) a_pure; template T len_sq ( const Vector& parVector ) a_pure; template Vector normalized ( const Vector& parVector ) a_pure; } //namespace cloonel #include "vectormath.inl" #endif