Index: ui/gfx/geometry/vector3d_f.cc |
diff --git a/ui/gfx/geometry/vector3d_f.cc b/ui/gfx/geometry/vector3d_f.cc |
index 87223880669ed51a4bd15cc1302d31a14d16a4fa..ddeafe5ee6f2bf142c8ee999bbb8deba9133d329 100644 |
--- a/ui/gfx/geometry/vector3d_f.cc |
+++ b/ui/gfx/geometry/vector3d_f.cc |
@@ -14,24 +14,6 @@ const float kRadiansToDegrees = 180.0f / 3.14159265f; |
namespace gfx { |
-Vector3dF::Vector3dF() |
- : x_(0), |
- y_(0), |
- z_(0) { |
-} |
- |
-Vector3dF::Vector3dF(float x, float y, float z) |
- : x_(x), |
- y_(y), |
- z_(z) { |
-} |
- |
-Vector3dF::Vector3dF(const Vector2dF& other) |
- : x_(other.x()), |
- y_(other.y()), |
- z_(0) { |
-} |
- |
std::string Vector3dF::ToString() const { |
return base::StringPrintf("[%f %f %f]", x_, y_, z_); |
} |