// (c) Tuomas J. Lukka package gzz.modules.pp; import gzz.modules.pp.vob.*; import gzz.gfx.gl.*; import gzz.vob.*; import gzz.view.*; import gzz.*; public class PPView2 implements View { Space space; PPDims d; CoordinatePlaneView coordinatePlaneView; class SinglePlane { ViewContext context; void render(VobScene into, int frameCS, int c2fCS) { GLVobCoorder glc = (GLVobCoorder)into.coords; int conc = glc.concat(c2fCS, frameCS); Cell cursor = context.getAccursed(); Cell plane = cursor.h(d.contains); BgVob bg = BgVob.create(plane); } } public PPView2(Space space) { this.space = space; this.d = new PPDims(space); this.coordinatePlaneView = new CoordinatePlaneView(d.clone, d.pan); } public void render(VobScene into, int intoCS, ViewContext context) { } }