|
From: Mark R. D. <mdi...@la...> - 2003-08-11 17:00:13
|
I fixed it in the CVS tree. Thanks.
Ian Turton wrote:
> The constructor for RasterSpace shown below,
> public RasterSpace(double left, double bottom, double right, double top,
> double cellSize, int w, int h) {
> this.cellSize = cellSize;
> originx = left;
> originy = bottom;
> termx = right;
> termy = top;
> height = h;
> width = w;
> }
>
>
> needs to have
> matrix = new DoubleMatrix(h, w);
> added at the end.
>
> Ian
> Ian Turton, Director, Centre for Computational Geography, University of
> Leeds, Leeds, LS2 9JT
> http://www.geog.leeds.ac.uk/people/i.turton http://www.ccg.leeds.ac.uk
> http://www.geotools.org
> +44 (0) 113 343 3392 fax: +44 (0) 113 343 3308
>
>
>
> -------------------------------------------------------
> This SF.Net email sponsored by: Free pre-built ASP.NET sites including
> Data Reports, E-commerce, Portals, and Forums are available now.
> Download today and enter to win an XBOX or Visual Studio .NET.
> http://aspnet.click-url.com/go/psa00100003ave/direct;at.aspnet_072303_01/01
> _______________________________________________
> Repast-developer mailing list
> Rep...@li...
> https://lists.sourceforge.net/lists/listinfo/repast-developer
|