From 56573a82e822b2eb37cfb4df15f1e76f043c0f8f Mon Sep 17 00:00:00 2001 From: John Cupitt Date: Mon, 23 Mar 2009 16:08:20 +0000 Subject: [PATCH] stuff --- TODO | 24 ++++++++++++++++++++++-- 1 file changed, 22 insertions(+), 2 deletions(-) diff --git a/TODO b/TODO index 6133f54c..5a0e3aa9 100644 --- a/TODO +++ b/TODO @@ -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 "", line 1, in + TypeError: 'VIMask' object is unindexable + >>> mask.__index__(0) + + >>> mask(0,0) + + +- radiance writer? the reader is OK, apparently + +- doc strings would be nice, read the SWIG notes on this + + + +