This commit is contained in:
John Cupitt 2009-03-23 16:08:20 +00:00
parent 74b0bf80ad
commit 56573a82e8
1 changed files with 22 additions and 2 deletions

24
TODO
View File

@ -1,5 +1,25 @@
- could allow maps of half-there images in windowed mode and just stop windows
being made outside the valid area
- mask subscript in Pythion seems to be broken
>>> from vipsCC import *
>>> mask = VMask.VIMask_gauss(3.,0.2)
>>> mask.xsize()
13
>>> mask[0]
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
TypeError: 'VIMask' object is unindexable
>>> mask.__index__(0)
<Swig Object of type 'int *' at 0x2443e08>
>>> mask(0,0)
<Swig Object of type 'int *' at 0x2444d30>
- radiance writer? the reader is OK, apparently
- doc strings would be nice, read the SWIG notes on this