| # | Line 23 | Line 23 | class Vector3d{ | |
|---|---|---|
| 23 | this->z = z; | |
| 24 | } | |
| 25 | ||
| 26 | – | Vector3d(double* r){ |
| 27 | – | this->x = r[0]; |
| 28 | – | this->y = r[1]; |
| 29 | – | this->z = r[2]; |
| 30 | – | } |
| 31 | – | |
| 26 | Vector3d(const Vector3d& v1){ | |
| 27 | this->x = v1.x; | |
| 28 | this->y = v1.y; | |
| – | Removed lines |
| + | Added lines |
| < | Changed lines |
| > | Changed lines |