Lines Matching refs:Vector2dF
13 std::string Vector2dF::ToString() const { in ToString()
17 bool Vector2dF::IsZero() const { in IsZero()
21 void Vector2dF::Add(const Vector2dF& other) { in Add()
26 void Vector2dF::Subtract(const Vector2dF& other) { in Subtract()
31 double Vector2dF::LengthSquared() const { in LengthSquared()
35 float Vector2dF::Length() const { in Length()
39 void Vector2dF::Scale(float x_scale, float y_scale) { in Scale()
44 double CrossProduct(const Vector2dF& lhs, const Vector2dF& rhs) { in CrossProduct()
49 double DotProduct(const Vector2dF& lhs, const Vector2dF& rhs) { in DotProduct()
54 Vector2dF ScaleVector2d(const Vector2dF& v, float x_scale, float y_scale) { in ScaleVector2d()
55 Vector2dF scaled_v(v); in ScaleVector2d()