Package com.eteks.sweethome3d.j3d

Examples of com.eteks.sweethome3d.j3d.Component3DManager$RenderingObserver


     * Creates components displayed by this panel.
     */
    private void createComponents(UserPreferences preferences) {
      this.frontViewLabel = new JLabel(preferences.getLocalizedString(
          ImportedFurnitureWizardStepsPanel.class, "frontViewLabel.text"));
      Component3DManager canvas3DManager = Component3DManager.getInstance();
      this.frontViewCanvas = canvas3DManager.getOnscreenCanvas3D();
      this.sideViewLabel = new JLabel(preferences.getLocalizedString(
          ImportedFurnitureWizardStepsPanel.class, "sideViewLabel.text"));
      this.sideViewCanvas = canvas3DManager.getOnscreenCanvas3D();
      this.topViewLabel = new JLabel(preferences.getLocalizedString(
          ImportedFurnitureWizardStepsPanel.class, "topViewLabel.text"));
      this.topViewCanvas = canvas3DManager.getOnscreenCanvas3D();
      this.perspectiveViewLabel = new JLabel(preferences.getLocalizedString(
          ImportedFurnitureWizardStepsPanel.class, "perspectiveViewLabel.text"));
     
      setBorder(null);
      // Add a hierarchy listener to link canvases to universe once this component is made visible
View Full Code Here

TOP

Related Classes of com.eteks.sweethome3d.j3d.Component3DManager$RenderingObserver

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.