Skip to content

Commit 27994d0

Browse files
committed
Remove rotate(x, y, z) from Reference
1 parent 03d2535 commit 27994d0

File tree

3 files changed

+16
-2
lines changed

3 files changed

+16
-2
lines changed

core/src/processing/core/PApplet.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12774,6 +12774,7 @@ public void rotateZ(float angle) {
1277412774
/**
1277512775
* <h3>Advanced</h3>
1277612776
* Rotate about a vector in space. Same as the glRotatef() function.
12777+
* @nowebref
1277712778
* @param x
1277812779
* @param y
1277912780
* @param z

java/libraries/net/src/processing/net/Client.java

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -261,8 +261,15 @@ public void run() {
261261

262262

263263
/**
264-
* Return true if this client is still active and hasn't run
264+
* ( begin auto-generated from Client_active.xml )
265+
*
266+
* Returns true if this client is still active and hasn't run
265267
* into any trouble.
268+
*
269+
* ( end auto-generated )
270+
* @webref client:client
271+
* @brief Returns true if this client is still active
272+
* @usage application
266273
*/
267274
public boolean active() {
268275
return (thread != null);

java/libraries/net/src/processing/net/Server.java

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -179,8 +179,14 @@ protected int clientIndex(Client client) {
179179

180180

181181
/**
182-
* Return true if this server is still active and hasn't run
182+
* ( begin auto-generated from Server_active.xml )
183+
*
184+
* Returns true if this server is still active and hasn't run
183185
* into any trouble.
186+
*
187+
* ( end auto-generated )
188+
* @webref server:server
189+
* @brief Return true if this server is still active.
184190
*/
185191
public boolean active() {
186192
return thread != null;

0 commit comments

Comments
 (0)