Home | History | Annotate | Download | only in geometry

Lines Matching refs:z_

16       z_(0) {
22 z_(z) {
28 z_(0) {
32 return base::StringPrintf("[%f %f %f]", x_, y_, z_);
36 return x_ == 0 && y_ == 0 && z_ == 0;
42 z_ += other.z_;
48 z_ -= other.z_;
53 static_cast<double>(z_) * z_;
63 z_ *= z_scale;
67 float x = y_ * other.z() - z_ * other.y();
68 float y = z_ * other.x() - x_ * other.z();
72 z_ = z;