Advertisement
Guest User

Untitled

a guest
Oct 23rd, 2017
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.12 KB | None | 0 0
  1. 92 Vector Vector::operator*(const double k, const Vector &a) {
  2. 93 return Vector(a.x_ * k, a.y_ * k, a.z_ * k);
  3. 94 }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement