Skip to content

Commit 08b8984

Browse files
committed
Update PVector.java
Fix typo in docs.
1 parent a272fa8 commit 08b8984

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/src/processing/core/PVector.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -934,7 +934,7 @@ public PVector rotate(float theta) {
934934
* @usage web_application
935935
* @brief Linear interpolate the vector to another vector
936936
* @param v the vector to lerp to
937-
* @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.
937+
* @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.
938938
* @see PApplet#lerp(float, float, float)
939939
*/
940940
public PVector lerp(PVector v, float amt) {

0 commit comments

Comments
 (0)