From 0be7fe3beade9dae2cd14715c6603e7b52af0210 Mon Sep 17 00:00:00 2001 From: AmnonOwed Date: Sun, 4 May 2014 14:04:45 +0200 Subject: [PATCH] Conform PVector.set() reference to standard practice --- core/src/processing/core/PVector.java | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) 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;