Open HawkinsJM opened 7 years ago
When I run the following code I would expect the two print lines to both return the same thing. However, only line 4 prints the correct PVector, but line 3 prints None.
vec = PVector(cos(angle), sin(angle)) print vec.mult(2) print PVector.mult(vec,2)```
Yep, that's wrong. Thank you.
When I run the following code I would expect the two print lines to both return the same thing. However, only line 4 prints the correct PVector, but line 3 prints None.