This reference is for Processing 3.0+. If you have a previous version, use the reference included with your software in the Help menu. If you see any errors or have suggestions, please let us know. If you prefer a more technical reference, visit the Processing Core Javadoc and Libraries Javadoc.
Name | /** */ (doc comment) |
||
---|---|---|---|
Examples | /** Draws two lines which divides the window into four quadrants. First draws a horizontal line and then the vertical line */ line(0, 50, 100, 50); line(50, 0, 50, 100); | ||
Description |
Explanatory notes embedded within the code. Doc comments (documentation comments) are used to describe and document your sketch, classes, and methods. Comments are ignored by the compiler.
Doc comments may be converted into browseable documentation using external editors and tools such as the command line javadoc, doc generators such as Doxygen, or IDEs such as Eclipse, Netbeans, or IntelliJ IDEA. |
||
Syntax | /** comment */ | ||
Parameters |
| ||
Related | // (comment) /* */ (multiline comment) |
This work is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License.