You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Second, I'd like to know if it could be possible to change the assignment operator behaviour to avoid a new instantiation whenever the object already exists, for example:
Vec2 a = new Vec2()
a = b + c * 2;
here the assignment operator may point a set method instead of valueOf
The text was updated successfully, but these errors were encountered:
Hi,
Let me first say this is an awesome project!
Second, I'd like to know if it could be possible to change the assignment operator behaviour to avoid a new instantiation whenever the object already exists, for example:
Vec2 a = new Vec2()
a = b + c * 2;
here the assignment operator may point a
set
method instead ofvalueOf
The text was updated successfully, but these errors were encountered: