20 : x_(rhs.x_), y_(rhs.y_), z_(rhs.z_)
76 this->
x_ += mult * rhs.
x_;
77 this->
y_ += mult * rhs.
y_;
78 this->
z_ += mult * rhs.
z_;
83 return this->
x_ * rhs.
x_ + this->
y_ * rhs.
y_ + this->
z_ * rhs.
z_;
87 os <<
x_ <<
", " <<
y_ <<
", " <<
z_ << std::endl;
Vector3D & operator-=(const Vector3D &)
Vector3D & operator=(const Vector3D &)
Vector3D & operator+=(const Vector3D &)
Vector3D & operator/=(const Vector3D &)
Vector3D & operator*=(const double)
double dot_product_with(const Vector3D &) const
Vector3D(const double &x, const double &y, const double &z)
void print(std::ostream &os) const
void axpy(const double, const Vector3D &)
x -> x + mult * rhs