Commit 73c35ebd authored by Hui Wang's avatar Hui Wang
Browse files

fix cmu462 lib

parent 97f56dc3
......@@ -99,7 +99,7 @@ class Vector4D {
// addition / assignment
inline void operator+=( const Vector4D& v ) {
x += v.x; y += v.y; z += v.z; z += v.w;
x += v.x; y += v.y; z += v.z; w += v.w;
}
// subtraction / assignment
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment