Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Courses
DrawSVG
Commits
73c35ebd
Commit
73c35ebd
authored
Feb 18, 2022
by
Hui Wang
Browse files
fix cmu462 lib
parent
97f56dc3
Changes
1
Hide whitespace changes
Inline
Side-by-side
CMU462/include/CMU462/vector4D.h
View file @
73c35ebd
...
@@ -99,7 +99,7 @@ class Vector4D {
...
@@ -99,7 +99,7 @@ class Vector4D {
// addition / assignment
// addition / assignment
inline
void
operator
+=
(
const
Vector4D
&
v
)
{
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
// subtraction / assignment
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment