Example usage for javax.media.j3d Material getAmbientColor

List of usage examples for javax.media.j3d Material getAmbientColor

Introduction

In this page you can find the example usage for javax.media.j3d Material getAmbientColor.

Prototype

public void getAmbientColor(Color3f color) 

Source Link

Document

Retrieves this material's ambient color.

Usage

From source file:AppearanceExplorer.java

public void actionPerformed(ActionEvent e) {
    Material copyMaterial = materialPresets[presetChooser.getValue()];

    lightingEnable = copyMaterial.getLightingEnable();
    copyMaterial.getAmbientColor(ambientColor);
    copyMaterial.getDiffuseColor(diffuseColor);
    copyMaterial.getEmissiveColor(emissiveColor);
    copyMaterial.getSpecularColor(specularColor);
    shininess = copyMaterial.getShininess();

    // update the GUI
    lightingEnableCheckBox.setSelected(lightingEnable);
    material.setLightingEnable(lightingEnable);
    ambientEditor.setValue(ambientColor);
    diffuseEditor.setValue(diffuseColor);
    emissiveEditor.setValue(emissiveColor);
    specularEditor.setValue(specularColor);
    shininessSlider.setValue(shininess);
}