diff --git a/core/src/processing/core/PVector.java b/core/src/processing/core/PVector.java index 58f86da3d..49e54a0d0 100644 --- a/core/src/processing/core/PVector.java +++ b/core/src/processing/core/PVector.java @@ -161,7 +161,7 @@ public class PVector implements Serializable { * @param x the x component of the vector * @param y the y component of the vector * @param z the z component of the vector - * @brief Set the x, y, and z component of the vector + * @brief Set the components of the vector */ public void set(float x, float y, float z) { this.x = x; @@ -170,11 +170,8 @@ public class PVector implements Serializable { } /** - * - * @webref pvector:method * @param x the x component of the vector * @param y the y component of the vector - * @brief Set the x, y components of the vector */ public void set(float x, float y) { this.x = x;