110229 core (3.0a2)
2- X add copy() method to Table
3- X return null from getString() on NaN float and double values
4- X affects how saveTable() works (writes blank entries instead of NaN)
5- X get(5) with an empty Int/Float/StringList was returning 0
6- X https://github.com/processing/processing/pull/2343
72X PImage resize() causes images to not draw
83X https://github.com/processing/processing/issues/2228
94X https://github.com/processing/processing/pull/2324
105X move to native OS X full screen (gets rid of native code)
116X https://github.com/processing/processing/issues/2641
127
8+ data
9+ X add copy() method to Table
10+ X return null from getString() on NaN float and double values
11+ X affects how saveTable() works (writes blank entries instead of NaN)
12+ X get(5) with an empty Int/Float/StringList was returning 0
13+ X https://github.com/processing/processing/pull/2343
14+ o fix for maxValue() and minValue() when all entries are bad
15+ o on FloatDict it was NaN, check across the lists and other dict types
16+ X nothing else to do here
17+ X FloatDict and FloatList should always put NaN values at the end on sort
18+ X same for the other list and dict classes
19+ X (this is part of the point of having these easier versions)
1320
1421pulls
1522X implement A and a (elliptical arcs)
@@ -33,11 +40,6 @@ processing.data
3340_ need a better method for "missing" data in Table
3441_ if missing int is zero, can't just remove those values from saving a table
3542_ but for NaN values, it's a necessity
36- _ fix for maxValue() and minValue() when all entries are bad
37- _ on FloatDict it was NaN, check across the lists and other dict types
38- _ StringDict should always put NaN values at the end on sort
39- _ same for the other list and dict classes
40- _ (this is part of the point of having these easier versions)
4143_ get() methods in List/Dict shouldn't allow you to get bad values
4244_ but set() methods can automatically resize the arrays
4345_ though that means insert() should allow you to insert past the end
@@ -54,6 +56,7 @@ _ match and iterators
5456_ add match version that returns table that's only a pointer to original
5557_ save the constructor for the version that actually copies data
5658_ the table pointer version will be speedy and allow chaining
59+ _ add Double and Long versions of the classes?
5760
5861
5962later
0 commit comments