Skip to content

Commit 40a677c

Browse files
committed
Conform PVector.set() reference to standard practice
1 parent 050ea44 commit 40a677c

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

core/src/processing/core/PVector.java

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ public PVector(float x, float y) {
161161
* @param x the x component of the vector
162162
* @param y the y component of the vector
163163
* @param z the z component of the vector
164-
* @brief Set the x, y, and z component of the vector
164+
* @brief Set the components of the vector
165165
*/
166166
public void set(float x, float y, float z) {
167167
this.x = x;
@@ -170,11 +170,8 @@ public void set(float x, float y, float z) {
170170
}
171171

172172
/**
173-
*
174-
* @webref pvector:method
175173
* @param x the x component of the vector
176174
* @param y the y component of the vector
177-
* @brief Set the x, y components of the vector
178175
*/
179176
public void set(float x, float y) {
180177
this.x = x;

0 commit comments

Comments
 (0)