Example usage for javax.media.j3d Material getDiffuseColor

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

Introduction

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

Prototype

public void getDiffuseColor(Color3f color) 

Source Link

Document

Retrieves this material's diffuse 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);
}