/** * Returns the dimensionality of the display. * * @return The dimensionality of the display (either 2 or 3). */ public int getDimensionality() { return display.getDisplayRenderer().getMode2D() ? 2 : 3; }
/** * Returns the AWT component. * * @return The AWT component. */ public Component getComponent() { return display.getComponent(); }