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

/external/chromium_org/ui/gfx/geometry/
H A Dvector3d_f.cc13 Vector3dF::Vector3dF() function in class:gfx::Vector3dF
19 Vector3dF::Vector3dF(float x, float y, float z) function in class:gfx::Vector3dF
25 Vector3dF::Vector3dF(const Vector2dF& other) function in class:gfx::Vector3dF
31 std::string Vector3dF::ToString() const {
35 bool Vector3dF::IsZero() const {
39 void Vector3dF::Add(const Vector3dF
[all...]
H A Dvector3d_f.h21 class GFX_EXPORT Vector3dF { class in namespace:gfx
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
[all...]

Completed in 51 milliseconds