// (c) Tuomas J. Lukka package org.fenfire.view; /** An interface which a View2D may implement. */ public interface NodedView2D { /** Return the node (or null) pointed to by a mouse click. */ public Object getNode(VobScene oldvs, int x, int y, Object plane, int matchingParent, int box2screen, int box2plane, float[] xyout); }