Rejiggered the iso scene rendering yet again to address objects in the

scene that may partition two items, and to address the lack of a proper
total ordering of dirty items in the non-partitioned comparison case.


git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@792 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Walter Korman
2001-12-16 05:42:16 +00:00
parent 3c4c71b3c7
commit 1e1b5e1d4a
2 changed files with 346 additions and 44 deletions
@@ -1,5 +1,5 @@
//
// $Id: IsoSceneView.java,v 1.78 2001/12/15 04:20:55 mdb Exp $
// $Id: IsoSceneView.java,v 1.79 2001/12/16 05:42:16 shaper Exp $
package com.threerings.miso.scene;
@@ -194,7 +194,7 @@ public class IsoSceneView implements SceneView
gfx.setColor(Color.yellow);
size = _dirtyItems.size();
for (int ii = 0; ii < size; ii++) {
Rectangle rect = ((DirtyItem)_dirtyItems.get(ii)).dirtyRect;
Rectangle rect = _dirtyItems.get(ii).dirtyRect;
gfx.draw(rect);
}
}