mirror of
https://github.com/processing/processing4.git
synced 2026-06-16 04:26:26 +02:00
Merge pull request #4140 from GKFX/patch-1
Fix typo in PVector.java docs
This commit is contained in:
@@ -934,7 +934,7 @@ public class PVector implements Serializable {
|
||||
* @usage web_application
|
||||
* @brief Linear interpolate the vector to another vector
|
||||
* @param v the vector to lerp to
|
||||
* @param amt The amount of interpolation; some value between 0.0 (old vector) and 1.0 (new vector). 0.1 is very near the new vector. 0.5 is halfway in between.
|
||||
* @param amt The amount of interpolation; some value between 0.0 (old vector) and 1.0 (new vector). 0.1 is very near the old vector; 0.5 is halfway in between.
|
||||
* @see PApplet#lerp(float, float, float)
|
||||
*/
|
||||
public PVector lerp(PVector v, float amt) {
|
||||
|
||||
Reference in New Issue
Block a user