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

  /external/chromium_org/ui/gfx/geometry/
vector3d_f.cc 13 Vector3dF::Vector3dF()
19 Vector3dF::Vector3dF(float x, float y, float z)
25 Vector3dF::Vector3dF(const Vector2dF& other)
31 std::string Vector3dF::ToString() const {
35 bool Vector3dF::IsZero() const {
39 void Vector3dF::Add(const Vector3dF& other)
    [all...]
vector3d_f.h 21 class GFX_EXPORT Vector3dF {
23 Vector3dF();
24 Vector3dF(float x, float y, float z);
26 explicit Vector3dF(const Vector2dF& other);
41 void Add(const Vector3dF& other);
43 void Subtract(const Vector3dF& other);
45 void operator+=(const Vector3dF& other) { Add(other); }
46 void operator-=(const Vector3dF& other) { Subtract(other); }
48 void SetToMin(const Vector3dF& other) {
54 void SetToMax(const Vector3dF& other)
    [all...]

Completed in 38 milliseconds