libcruft-util/vector.hpp

66 lines
1.8 KiB
C++
Raw Normal View History

2011-05-23 17:18:52 +10:00
/*
* This file is part of libgim.
2011-05-23 17:18:52 +10:00
*
* libgim is free software: you can redistribute it and/or modify it under the
2011-05-23 17:18:52 +10:00
* 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
2011-05-23 17:18:52 +10:00
* 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 <http://www.gnu.org/licenses/>.
2011-05-23 17:18:52 +10:00
*
* Copyright 2011 Danny Robson <danny@blubinc.net>
*/
#ifndef __UTIL_VECTOR_HPP
#define __UTIL_VECTOR_HPP
#include "json.hpp"
#include <iostream>
2011-05-23 17:18:52 +10:00
namespace util {
struct vector {
double x, y, z;
2011-05-23 17:18:52 +10:00
vector operator* (double) const;
vector& operator*=(double);
2011-10-24 15:17:15 +11:00
vector operator* (const vector&) const;
vector& operator*=(const vector&);
2011-05-23 17:18:52 +10:00
vector operator+ (const vector&) const;
vector& operator+=(const vector&);
2011-05-23 17:18:52 +10:00
2011-10-24 15:17:15 +11:00
vector operator- (void) const;
vector operator- (const vector&) const;
vector& operator-=(const vector&);
2011-05-23 17:18:52 +10:00
vector& operator =(const vector &);
2011-05-23 17:18:52 +10:00
2011-10-29 15:07:34 +11:00
bool operator== (const vector &) const;
double magnitude (void) const;
double magnitude2 (void) const;
2011-05-23 17:18:52 +10:00
double dot (const vector&) const;
vector cross (const vector&) const;
2011-05-23 17:18:52 +10:00
vector& normalise (void);
vector normalised (void) const;
2011-05-23 17:18:52 +10:00
void sanity (void) const;
2011-05-23 17:18:52 +10:00
};
}
util::vector operator* (double, const util::vector&);
2011-05-23 17:18:52 +10:00
std::ostream& operator<< (std::ostream&, const util::vector&);
const json::node& operator>> (const json::node&, util::vector&);
2011-05-23 17:18:52 +10:00
#endif