summaryrefslogtreecommitdiffhomepage
path: root/processing.html.markdown
diff options
context:
space:
mode:
authorDivay Prakash <divayprakash3@gmail.com>2018-11-17 19:29:34 +0530
committerDivay Prakash <divayprakash3@gmail.com>2018-11-17 19:29:34 +0530
commitfc741ca8d500a9075ecd3aafae22d8f2f34509b3 (patch)
tree9256831e646026a9f732f71fb4ea2f46fa0d8020 /processing.html.markdown
parent60d5f315cd0f795155a87d72e7b75d1d528b8fdd (diff)
Fix build error
Diffstat (limited to 'processing.html.markdown')
-rw-r--r--processing.html.markdown8
1 files changed, 4 insertions, 4 deletions
diff --git a/processing.html.markdown b/processing.html.markdown
index fc5dc997..c68c5f3b 100644
--- a/processing.html.markdown
+++ b/processing.html.markdown
@@ -12,7 +12,7 @@ While the language is based on Java language,
its syntax has been largely influenced by both Java and Javascript syntaxes. [See more here](https://processing.org/reference/)
The language is statically typed, and also comes with its official IDE to compile and run the scripts.
-```processing
+```
/* ---------
Comments
---------
@@ -208,7 +208,7 @@ exit(); // This stops the program. It is useful for programs with draw() running
## Drawing with Processing
Since you will have understood the basics of the language by now, we will now look into the best part of Processing; DRAWING.
-```processing
+```
/* ------
Shapes
@@ -330,7 +330,7 @@ texture(image); // PImage can be passed into arguments for texture-mapping the s
```
If you want to take things further, there are more things Processing is powered for. Rendering models, shaders and whatnot.
There's too much to cover in a short documentation, so I will leave them out here. Shoud you be interested, please check out the references.
-```processing
+```
// Before we move on, I will touch a little bit more on how to import libraries
// so you can extend Processing's functionality to another horizon.
@@ -351,7 +351,7 @@ Down To Code? Let's get our hands dirty!
Let us see an example from openprocessing to visualize how much Processing is capable of within few lines of code.
Copy the code below into your Processing IDE and see the magic.
-```processing
+```
// Disclaimer: I did not write this program since I currently am occupied with internship and
// this sketch is adapted from openprocessing since it shows something cool with simple codes.