Closed smoothmango closed 11 years ago
@codeanticode @benfry I think this happened b/c I made some updates to PVector, but I did not realize I needed to update Android mode as well. Would you like me to make sure they are aligned or does this process happen separately?
Now integrated for the next release.
In Android mode, the PVector class does not have the same convenience method signature for the set() method.
will result in the compile error:
This error is not present in java mode, and is rectified in android mode by supplying three floats to the set() method:
set(float, float, float)
Recommend addingset(float, float)
for consistency with java mode.