File tree Expand file tree Collapse file tree 3 files changed +8
-1
lines changed Expand file tree Collapse file tree 3 files changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -2,6 +2,7 @@ started 8.5 24/1/17
2
2
- add max_slope to lhist
3
3
- gaussnoise goes via vips8 now
4
4
- add snake option to array join [Joe Padfield]
5
+ - parse_float was broken for numbers starting "0."
5
6
6
7
started 8.4.1 25/9/16
7
8
- simplify nip2-icon.rc build, bgilbert
Original file line number Diff line number Diff line change
1
+ - should parse_float / _int etc. allow leading and trailing spaces?
2
+
3
+ (split is_space x)?0
4
+
5
+ - add entropy menu item
6
+
1
7
- sharpen should use new interface?
2
8
3
9
- can we call affine from nip2 vips_call? do we need a double array?
Original file line number Diff line number Diff line change @@ -189,7 +189,7 @@ parse_float l
189
189
190
190
ipart = parse_int parts?0;
191
191
sign
192
- = 1, ipart > 0
192
+ = 1, ipart >= 0
193
193
= -1;
194
194
fpart
195
195
= 0, parts?1 == [];
You can’t perform that action at this time.
0 commit comments