Skip to content

Commit c2b1013

Browse files
committed
Remove Puff example
1 parent fc10ac8 commit c2b1013

File tree

4 files changed

+14
-200
lines changed

4 files changed

+14
-200
lines changed

java/examples/Basics/Image/BackgroundImage/BackgroundImage.pde

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ void setup() {
1616
size(640, 360);
1717
// The background image must be the same size as the parameters
1818
// into the size() method. In this program, the size of the image
19-
// is 650 x 360 pixels.
19+
// is 640 x 360 pixels.
2020
bg = loadImage("moonwalk.jpg");
2121
}
2222

java/examples/Topics/Drawing/ScribblePlotter/ScribblePlotter.pde

Lines changed: 0 additions & 90 deletions
This file was deleted.

java/examples/Topics/Motion/Puff/Puff.pde

Lines changed: 0 additions & 92 deletions
This file was deleted.

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

Lines changed: 13 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -31,16 +31,16 @@
3131
import java.net.*;
3232

3333
/**
34-
* ( begin auto-generated from Server.xml )
35-
*
36-
* A server sends and receives data to and from its associated clients
37-
* (other programs connected to it). When a server is started, it begins
38-
* listening for connections on the port specified by the <b>port</b>
39-
* parameter. Computers have many ports for transferring data and some are
40-
* commonly used so be sure to not select one of these. For example, web
41-
* servers usually use port 80 and POP mail uses port 110.
42-
*
43-
* ( end auto-generated )
34+
* ( begin auto-generated from Server.xml )
35+
*
36+
* A server sends and receives data to and from its associated clients
37+
* (other programs connected to it). When a server is started, it begins
38+
* listening for connections on the port specified by the <b>port</b>
39+
* parameter. Computers have many ports for transferring data and some are
40+
* commonly used so be sure to not select one of these. For example, web
41+
* servers usually use port 80 and POP mail uses port 110.
42+
*
43+
* ( end auto-generated )
4444
* @webref net
4545
* @usage application
4646
* @brief The server class is used to create server objects which send and receives data to and from its associated clients (other programs connected to it).
@@ -104,8 +104,7 @@ public Server(PApplet parent, int port) {
104104
* Disconnect a particular client.
105105
*
106106
* ( end auto-generated )
107-
*
108-
* ( end auto-generated )
107+
* @brief Disconnect a particular client.
109108
* @webref server:server
110109
* @param client the client to disconnect
111110
*/
@@ -169,8 +168,7 @@ static public String ip() {
169168
* Returns the next client in line with a new message.
170169
*
171170
* ( end auto-generated )
172-
*
173-
* ( end auto-generated )
171+
* @brief Returns the next client in line with a new message.
174172
* @webref server
175173
* @usage application
176174
*/
@@ -198,12 +196,11 @@ public Client available() {
198196
* Disconnects all clients and stops the server.
199197
*
200198
* ( end auto-generated )
201-
*
202199
* <h3>Advanced</h3>
203-
* <p/>
204200
* Use this to shut down the server if you finish using it while your applet
205201
* is still running. Otherwise, it will be automatically be shut down by the
206202
* host PApplet using dispose(), which is identical.
203+
* @brief Disconnects all clients and stops the server.
207204
* @webref server
208205
* @usage application
209206
*/
@@ -273,7 +270,6 @@ public void run() {
273270
* Server object.
274271
*
275272
* ( end auto-generated )
276-
*
277273
* @webref server
278274
* @brief Writes data to all connected clients
279275
* @param data data to write

0 commit comments

Comments
 (0)