Example usage for javax.media.j3d DirectionalLight ALLOW_DIRECTION_READ

List of usage examples for javax.media.j3d DirectionalLight ALLOW_DIRECTION_READ

Introduction

In this page you can find the example usage for javax.media.j3d DirectionalLight ALLOW_DIRECTION_READ.

Prototype

int ALLOW_DIRECTION_READ

To view the source code for javax.media.j3d DirectionalLight ALLOW_DIRECTION_READ.

Click Source Link

Document

Specifies that the Node allows access to its object's direction information.

Usage

From source file:LightTest.java

protected int[] getCapabilities() {
    int[] superCaps = super.getCapabilities();

    int[] caps = { DirectionalLight.ALLOW_DIRECTION_READ, DirectionalLight.ALLOW_DIRECTION_WRITE, };

    return createCompoundArray(superCaps, caps);
}