OLD | NEW |
(Empty) | |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #include "ui/gfx/vector2d_f.h" |
| 6 |
| 7 #include <cmath> |
| 8 |
| 9 #include "base/stringprintf.h" |
| 10 |
| 11 namespace gfx { |
| 12 |
| 13 Vector2dF::Vector2dF() |
| 14 : x_(0), |
| 15 y_(0) { |
| 16 } |
| 17 |
| 18 Vector2dF::Vector2dF(float x, float y) |
| 19 : x_(x), |
| 20 y_(y) { |
| 21 } |
| 22 |
| 23 std::string Vector2dF::ToString() const { |
| 24 return base::StringPrintf("[%f %f]", x_, y_); |
| 25 } |
| 26 |
| 27 bool Vector2dF::IsZero() const { |
| 28 return x_ == 0 && y_ == 0; |
| 29 } |
| 30 |
| 31 void Vector2dF::Add(const Vector2dF& other) { |
| 32 x_ += other.x_; |
| 33 y_ += other.y_; |
| 34 } |
| 35 |
| 36 void Vector2dF::Subtract(const Vector2dF& other) { |
| 37 x_ -= other.x_; |
| 38 y_ -= other.y_; |
| 39 } |
| 40 |
| 41 double Vector2dF::LengthSquared() const { |
| 42 return static_cast<double>(x_) * x_ + static_cast<double>(y_) * y_; |
| 43 } |
| 44 |
| 45 float Vector2dF::Length() const { |
| 46 return static_cast<float>(std::sqrt(LengthSquared())); |
| 47 } |
| 48 |
| 49 void Vector2dF::Scale(float x_scale, float y_scale) { |
| 50 x_ *= x_scale; |
| 51 y_ *= y_scale; |
| 52 } |
| 53 |
| 54 } // namespace gfx |
OLD | NEW |