Skip to content

Commit 3e08afb

Browse files
committed
Reference fix for PVector add() and sub()
1 parent d21cbe0 commit 3e08afb

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

core/src/processing/core/PVector.java

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -472,8 +472,6 @@ public PVector add(float x, float y) {
472472

473473

474474
/**
475-
* @param x x component of the vector
476-
* @param y y component of the vector
477475
* @param z z component of the vector
478476
*/
479477
public PVector add(float x, float y, float z) {
@@ -544,8 +542,6 @@ public PVector sub(float x, float y) {
544542

545543

546544
/**
547-
* @param x the x component of the vector
548-
* @param y the y component of the vector
549545
* @param z the z component of the vector
550546
*/
551547
public PVector sub(float x, float y, float z) {
@@ -568,8 +564,6 @@ static public PVector sub(PVector v1, PVector v2) {
568564

569565
/**
570566
* Subtract one vector from another and store in another vector
571-
* @param v1 the x, y, and z components of a PVector object
572-
* @param v2 the x, y, and z components of a PVector object
573567
* @param target PVector in which to store the result
574568
*/
575569
static public PVector sub(PVector v1, PVector v2, PVector target) {

0 commit comments

Comments
 (0)