1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187
|
/*
Copyright (C) 2004, 2005, 2006 Nikolas Zimmermann <wildfox@kde.org>
2004, 2005 Rob Buis <buis@kde.org>
2005 Eric Seidel <eric@webkit.org>
2010 Zoltan Herczeg <zherczeg@webkit.org>
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.
This library 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
Library General Public License for more details.
You should have received a copy of the GNU Library General Public License
aint with this library; see the file COPYING.LIB. If not, write to
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
Boston, MA 02110-1301, USA.
*/
#ifndef FloatPoint3D_h
#define FloatPoint3D_h
#include "FloatPoint.h"
namespace WebCore {
class FloatPoint3D {
public:
FloatPoint3D()
: m_x(0)
, m_y(0)
, m_z(0)
{
}
FloatPoint3D(float x, float y, float z)
: m_x(x)
, m_y(y)
, m_z(z)
{
}
FloatPoint3D(const FloatPoint& p)
: m_x(p.x())
, m_y(p.y())
, m_z(0)
{
}
FloatPoint3D(const FloatPoint3D& p)
: m_x(p.x())
, m_y(p.y())
, m_z(p.z())
{
}
float x() const { return m_x; }
void setX(float x) { m_x = x; }
float y() const { return m_y; }
void setY(float y) { m_y = y; }
float z() const { return m_z; }
void setZ(float z) { m_z = z; }
void set(float x, float y, float z)
{
m_x = x;
m_y = y;
m_z = z;
}
void move(float dx, float dy, float dz)
{
m_x += dx;
m_y += dy;
m_z += dz;
}
void scale(float sx, float sy, float sz)
{
m_x *= sx;
m_y *= sy;
m_z *= sz;
}
bool isZero() const
{
return !m_x && !m_y && !m_z;
}
void normalize();
float dot(const FloatPoint3D& a) const
{
return m_x * a.x() + m_y * a.y() + m_z * a.z();
}
// Sets this FloatPoint3D to the cross product of the passed two.
// It is safe for "this" to be the same as either or both of the
// arguments.
void cross(const FloatPoint3D& a, const FloatPoint3D& b)
{
float x = a.y() * b.z() - a.z() * b.y();
float y = a.z() * b.x() - a.x() * b.z();
float z = a.x() * b.y() - a.y() * b.x();
m_x = x;
m_y = y;
m_z = z;
}
// Convenience function returning "this cross point" as a
// stack-allocated result.
FloatPoint3D cross(const FloatPoint3D& point) const
{
FloatPoint3D result;
result.cross(*this, point);
return result;
}
float lengthSquared() const { return this->dot(*this); }
float length() const { return sqrtf(lengthSquared()); }
float distanceTo(const FloatPoint3D& a) const;
private:
float m_x;
float m_y;
float m_z;
};
inline FloatPoint3D& operator +=(FloatPoint3D& a, const FloatPoint3D& b)
{
a.move(b.x(), b.y(), b.z());
return a;
}
inline FloatPoint3D& operator -=(FloatPoint3D& a, const FloatPoint3D& b)
{
a.move(-b.x(), -b.y(), -b.z());
return a;
}
inline FloatPoint3D operator+(const FloatPoint3D& a, const FloatPoint3D& b)
{
return FloatPoint3D(a.x() + b.x(), a.y() + b.y(), a.z() + b.z());
}
inline FloatPoint3D operator-(const FloatPoint3D& a, const FloatPoint3D& b)
{
return FloatPoint3D(a.x() - b.x(), a.y() - b.y(), a.z() - b.z());
}
inline bool operator==(const FloatPoint3D& a, const FloatPoint3D& b)
{
return a.x() == b.x() && a.y() == b.y() && a.z() == b.z();
}
inline bool operator!=(const FloatPoint3D& a, const FloatPoint3D& b)
{
return a.x() != b.x() || a.y() != b.y() || a.z() != b.z();
}
inline float operator*(const FloatPoint3D& a, const FloatPoint3D& b)
{
// dot product
return a.dot(b);
}
inline FloatPoint3D operator*(float k, const FloatPoint3D& v)
{
return FloatPoint3D(k * v.x(), k * v.y(), k * v.z());
}
inline FloatPoint3D operator*(const FloatPoint3D& v, float k)
{
return FloatPoint3D(k * v.x(), k * v.y(), k * v.z());
}
inline float FloatPoint3D::distanceTo(const FloatPoint3D& a) const
{
return (*this - a).length();
}
} // namespace WebCore
#endif // FloatPoint3D_h
|