gecko/content/media/webaudio/ThreeDPoint.h
Paul Adenot 9e83a59dad Bug 849918 - Initial support for PannerNode's 3D positional audio (equalpower panning model). r=ehsan,roc
--HG--
extra : rebase_source : d729da50f97b94ea0434a93ad481ac35954bfa9a
2013-03-21 17:45:53 +01:00

77 lines
1.6 KiB
C++

/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* vim:set ts=2 sw=2 sts=2 et cindent: */
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
#ifndef ThreeDPoint_h_
#define ThreeDPoint_h_
#include <cmath>
namespace mozilla {
namespace dom {
struct ThreeDPoint {
ThreeDPoint()
: x(0.)
, y(0.)
, z(0.)
{
}
ThreeDPoint(double aX, double aY, double aZ)
: x(aX)
, y(aY)
, z(aZ)
{
}
double Magnitude() const
{
return sqrt(x * x + y * y + z * z);
}
void Normalize()
{
double invDistance = 1 / Magnitude();
x *= invDistance;
y *= invDistance;
z *= invDistance;
}
ThreeDPoint CrossProduct(const ThreeDPoint& rhs) const
{
return ThreeDPoint(y * rhs.z - z * rhs.y,
z * rhs.x - x * rhs.z,
x * rhs.y - y * rhs.x);
}
double DotProduct(const ThreeDPoint& rhs)
{
return x * rhs.x + y * rhs.y + z * rhs.z;
}
double Distance(const ThreeDPoint& rhs)
{
return sqrt(hypot(rhs.x, x) + hypot(rhs.y, y) + hypot(rhs.z, z));
}
bool IsZero() const
{
return x == 0 && y == 0 && z == 0;
}
double x, y, z;
};
ThreeDPoint operator-(const ThreeDPoint& lhs, const ThreeDPoint& rhs);
ThreeDPoint operator*(const ThreeDPoint& lhs, const ThreeDPoint& rhs);
ThreeDPoint operator*(const ThreeDPoint& lhs, const double rhs);
bool operator==(const ThreeDPoint& lhs, const ThreeDPoint& rhs);
}
}
#endif