Difference between revisions of "Porting pushStyle(), popStyle(), and boolean() to Processing.js"
m |
m |
||
Line 12: | Line 12: | ||
*[http://processing.org/reference/min_.html ''min()''] (bug fix) | *[http://processing.org/reference/min_.html ''min()''] (bug fix) | ||
*[http://processing.org/reference/max_.html ''max()''] (bug fix) | *[http://processing.org/reference/max_.html ''max()''] (bug fix) | ||
+ | *[http://processing.org/reference/stringEquals_.html ''String::equals()''] | ||
+ | *[http://processing.org/reference/nf_.html ''nf()''] (bug fix) | ||
== Resources == | == Resources == | ||
Line 119: | Line 121: | ||
!Date | !Date | ||
!Notes | !Notes | ||
+ | |- | ||
+ | |Feb. 2, 2010 | ||
+ | |[http://wobblyretroaction.blogspot.com/2010/02/processingjs-nf.html ''nf()'' upgraded] | ||
+ | |- | ||
+ | |Jan. 31, 2010 | ||
+ | |[http://wobblyretroaction.blogspot.com/2010/01/processingjs-stringequals-or-how-i.html ''String::equals()'' completed] | ||
|- | |- | ||
|Jan. 31, 2010 | |Jan. 31, 2010 |
Revision as of 22:36, 2 February 2010
Contents
Project Name
Porting Processing to Processing.js
Project Description
Processing.js remains incomplete as a port of Processing. The following functions are targeted:
- pushStyle()
- popStyle()
- boolean()
- strokeCap()
- strokeJoin()
- text() (bug fix)
- min() (bug fix)
- max() (bug fix)
- String::equals()
- nf() (bug fix)
Resources
Project Leader(s)
Project Contributor(s)
Project Details
pushStyle() and popStyle()
- The number of states saved is tracked by pushedStates.
- pushStyle() calls curContext.save() and increments pushedStates by one.
- Excess pops are ignored.
Related Mozilla bugs
- #451165 - CanvasRenderingContext2D.fillStyle and strokeStyle accept invalid colours
- pushStyle() and popStyle() use CanvasRenderingContext2D.save() and restore(). These functions save fillStyle and strokeStyle.
boolean()
- Non-zero numeric values become true
- Bytes (0's and 1's) are interpreted as numeric values.
- null and undefine become false.
- Boolean arguments are returned as themselves.
strokeCap()
- Modifies context.lineCap.
- ROUND -> context.lineCap="round";
- SQUARE -> context.lineCap="butt";
- PROJECT -> context.lineCap="square";
- Processing default (ROUND) set in function init.
- function size modified to respect previous settings.
- Used to recreate context and reset settings, which overwrote the desired default.
strokeJoin()
text()
- Partially implementation missing ability to take int, float, double, and byte arguments.
- float and doubles rounded to thousandths digit.
- .5 rounds down rather than up.
Things to do
Description | Status | Assigned to | Link |
---|---|---|---|
Test cases for pushStyle() and popStyle() | Done | Matthew Lam | Test page |
Test cases for boolean() | Done | Matthew Lam | Test page |
Test cases for strokeCap() | Done | Matthew Lam | Test page |
Test cases for strokeJoin() | Done | Matthew Lam | Test page |
Test cases for text() | Done | Matthew Lam | Test page |
Releases
Version | Notes | Resources |
---|---|---|
0.4 | text() implementation enhanced. | |
0.3 | strokeCap() and strokeJoin() ported. | Final GitHub commit |
0.2 | Bug fixes for pushStyle(), popStyle(), and boolean(). Functions now functional. | Patch |
0.1 | Basic functionality for pushStyle() and popStyle(). Totally untested code for boolean(). | Patch |
Project News
Date | Notes |
---|---|
Feb. 2, 2010 | nf() upgraded |
Jan. 31, 2010 | String::equals() completed |
Jan. 31, 2010 | min() and max() upgraded |
Jan. 20, 2010 | Release 0.4 announcement |
Jan. 14, 2010 | Project continuation blog |
Dec. 9, 2009 | Release 0.3 announcement. |
Dec. 2, 2009 | strokeJoin() completed. |
Nov. 29, 2009 | strokeCap() completed. |
Nov. 19, 2009 | Release 0.2 announcement. |
Oct. 19, 2009 | Release 0.1 announcement. |
Oct. 12, 2009 | Project expanded to include boolean(). |
Sept. 28, 2009 | Basic improvements allow the rudimentary Processing example to function in Processing.js. |
Sept. 27, 2009 | The initial project proposal has been posted. Repository at github created. |