Skip to content

Commit 2ffe883

Browse files
committed
New version of Processing.js (1.4.1)
1 parent 4ace42d commit 2ffe883

File tree

3 files changed

+48
-10
lines changed

3 files changed

+48
-10
lines changed

content/api_en/textureMode.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ endShape();
4545
<description><![CDATA[
4646
Sets the coordinate space for texture mapping. The default mode is <b>IMAGE</b>, which refers to the actual coordinates of the image. <b>NORMALIZED</b> refers to a normalized space of values ranging from 0 to 1.<br/>
4747
<br/>
48-
With <b>IMAGE</b>, if an image is 100 x 200 pixels, mapping the image onto the entire size of a quad would require the points (0,0) (0,100) (100,200) (0,200). The same mapping in <b>NORMAL_SPACE</b> is (0,0) (0,1) (1,1) (0,1).
48+
With <b>IMAGE</b>, if an image is 100 x 200 pixels, mapping the image onto the entire size of a quad would require the points (0,0) (0,100) (100,200) (0,200). The same mapping in <b>NORMALIZED</b> is (0,0) (0,1) (1,1) (0,1).
4949
]]></description>
5050

5151
</root>

javascript/processing.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

todo.txt

Lines changed: 45 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ $ Prepare MODE images for JavaScript, Android --CR
1010

1111
x Parameter decisions --BF,CR,SM
1212
x Parameter alignment (after above decisions) --SM
13-
x size(): renderer parameters shown are P2D and P3D, but this should also list PDF --SM
14-
x PVector: 'z' parameter is incorrectly listed as 'the y coordinate'
13+
x size(): renderer parameters shown are P2D and P3D, but this should also list PDF --SM
14+
x PVector: 'z' parameter is incorrectly listed as 'the y coordinate'
1515
http://code.google.com/p/processing/issues/detail?id=935
1616

1717
- Contributed Libraries and Tools are not appearing on the site --CR,BF
@@ -22,13 +22,50 @@ RELATED LINKS WITHIN THE REFERENCE
2222
- Add imageMode() as related to Video library > Capture > crop --SM
2323
How can I reference this? Couldn't find it in Capture.java.
2424

25+
NEW EXAMPLES BASED ON THE OPENGL FOLDER
26+
27+
NEW
28+
29+
x Basics > Camera > NearFar
30+
x Basics > Camera > OrthoVSPerspective
31+
x Basics > Shape > LoadDisplayOBJ
32+
33+
CHANGES
34+
35+
- Check all video library examples
36+
x Topics > File IO > SavingFrames renamed to "SaveFrames"
37+
x Topics > Image Processing > Blending
38+
x Basics > Shape > LoadDisplayShape renamed "LoadDisplaySVG"
39+
40+
41+
REMOVE
42+
43+
x Topics > Create Shapes > SVGPShape (Not needed, PShape examples in Basics)
44+
45+
46+
2547
NEW LANGUAGE ELEMENTS IN REFERENCE
2648

2749
- XML --SM
2850
. loadXML()
2951
- TABLE --SM
3052
o JSON --SM // This has been removed for 2.0
31-
- loadTable(), loadXML() -- SM
53+
- loadTable(), loadXML() --SM
54+
55+
- filter() now accepts shaders?
56+
57+
- Disambiguation pages for things like "copy" in PImage and PVector
58+
- Is there a way to catch for keywords like "run" and "init" in the parser?
59+
- selectInput(), selectOutput(), and selectFolder() --CR
60+
- shaders and all related syntax --CR
61+
. PShader
62+
. loadShader()
63+
. resetShader()
64+
. PShader.bind()
65+
66+
- PVector changes --CR
67+
- displayWidth, displayHeight --CR
68+
- Closely review all Video API --CR
3269
x quadraticVertex() --CR
3370
- clear() --CR New method for PGraphics
3471
- new arc() --CR
@@ -149,14 +186,15 @@ x Done
149186

150187
2.0 EXAMPLE --XXX
151188

189+
- PGL?
152190
- Remove super.stop() and stop() from examples -- CR, MINIM
153191
- Move "Directory List" to File IO category --CR
154192
o new JSON? -- DS,JT
155-
- New PVector --DS
156-
- New PShape --DS
193+
x New PVector --DS
194+
x New PShape --DS
157195
- PTable --DS,JT
158-
- add stringIntPair to Hashmap --DS // Ben is still sorting out this API
159-
- New P3D --CR,DS,AC
196+
o add stringIntPair to Hashmap --DS // Ben is still sorting out this API
197+
x New P3D --CR,DS,AC
160198
x New Regex --DS
161199
x Analyze PVector in examples --DS
162200
x thread() example --DS

0 commit comments

Comments
 (0)