Closed Anstow closed 11 years ago
For some reason the line
vector += vector2 * float;
doesn't compile. But
vector = vector + vector2* float;
does. Something todo with lvalues was the message.
I think, after testing, @DavidTruby's rewrite of the Vector class has fixed this.
For some reason the line
doesn't compile. But
does. Something todo with lvalues was the message.