HomeSort by relevance Sort by last modified time
    Searched refs:Vector3 (Results 1 - 2 of 2) sorted by null

  /external/webkit/JavaScriptCore/wtf/
Vector3.h 36 class Vector3 {
38 Vector3()
45 Vector3(double x, double y, double z)
52 Vector3(const float p[3])
59 Vector3(const double p[3])
98 inline Vector3 operator+(const Vector3& v1, const Vector3& v2)
100 return Vector3(v1.x() + v2.x(), v1.y() + v2.y(), v1.z() + v2.z());
103 inline Vector3 operator-(const Vector3& v1, const Vector3& v2
    [all...]
  /external/webkit/WebCore/platform/graphics/transforms/
TransformationMatrix.cpp 58 typedef double Vector3[3];
241 static double v3Length(Vector3 a)
246 static void v3Scale(Vector3 v, double desiredLength)
257 static double v3Dot(const Vector3 a, const Vector3 b)
264 static void v3Combine(const Vector3 a, const Vector3 b, Vector3 result, double ascl, double bscl)
272 static void v3Cross(const Vector3 a, const Vector3 b, Vector3 result
    [all...]

Completed in 15 milliseconds