Home | History | Annotate | Download | only in geometry

Lines Matching refs:y_

15       y_(0),
21 y_(y),
27 y_(other.y()),
32 return base::StringPrintf("[%f %f %f]", x_, y_, z_);
36 return x_ == 0 && y_ == 0 && z_ == 0;
41 y_ += other.y_;
47 y_ -= other.y_;
52 return static_cast<double>(x_) * x_ + static_cast<double>(y_) * y_ +
62 y_ *= y_scale;
67 float x = y_ * other.z() - z_ * other.y();
69 float z = x_ * other.y() - y_ * other.x();
71 y_ = y;