From 808aa79127d4828f44ac5dc36e0f829f8d17ad82 Mon Sep 17 00:00:00 2001 From: REAS Date: Wed, 16 Sep 2015 20:19:17 -0700 Subject: [PATCH] Remove rotate(x, y, z) from Reference --- core/src/processing/core/PApplet.java | 1 + java/libraries/net/src/processing/net/Client.java | 9 ++++++++- java/libraries/net/src/processing/net/Server.java | 8 +++++++- 3 files changed, 16 insertions(+), 2 deletions(-) diff --git a/core/src/processing/core/PApplet.java b/core/src/processing/core/PApplet.java index 4164cf66a..75f816a0e 100644 --- a/core/src/processing/core/PApplet.java +++ b/core/src/processing/core/PApplet.java @@ -12774,6 +12774,7 @@ public class PApplet implements PConstants { /** *

Advanced

* Rotate about a vector in space. Same as the glRotatef() function. + * @nowebref * @param x * @param y * @param z diff --git a/java/libraries/net/src/processing/net/Client.java b/java/libraries/net/src/processing/net/Client.java index 599a94080..c3a0f5449 100644 --- a/java/libraries/net/src/processing/net/Client.java +++ b/java/libraries/net/src/processing/net/Client.java @@ -261,8 +261,15 @@ public class Client implements Runnable { /** - * Return true if this client is still active and hasn't run + * ( begin auto-generated from Client_active.xml ) + * + * Returns true if this client is still active and hasn't run * into any trouble. + * + * ( end auto-generated ) + * @webref client:client + * @brief Returns true if this client is still active + * @usage application */ public boolean active() { return (thread != null); diff --git a/java/libraries/net/src/processing/net/Server.java b/java/libraries/net/src/processing/net/Server.java index 8edc6cd9c..bf4abced2 100644 --- a/java/libraries/net/src/processing/net/Server.java +++ b/java/libraries/net/src/processing/net/Server.java @@ -179,8 +179,14 @@ public class Server implements Runnable { /** - * Return true if this server is still active and hasn't run + * ( begin auto-generated from Server_active.xml ) + * + * Returns true if this server is still active and hasn't run * into any trouble. + * + * ( end auto-generated ) + * @webref server:server + * @brief Return true if this server is still active. */ public boolean active() { return thread != null;