Package com.ardor3d.scenegraph.hint

Examples of com.ardor3d.scenegraph.hint.SceneHints


     * Constructs a new Spatial. Initializes the transform fields.
     */
    public Spatial() {
        _localTransform = Constants.useValidatingTransform ? new ValidatingTransform() : new Transform();
        _worldTransform = Constants.useValidatingTransform ? new ValidatingTransform() : new Transform();
        _sceneHints = new SceneHints(this);
    }
View Full Code Here


            if (spatial.getWorldBound() != null) {
                str.append(spatial.getWorldBound()).append('\n');
            }

            str.append('\n');
            final SceneHints sceneHints = spatial.getSceneHints();
            str.append("Cull hint: ");
            str.append(sceneHints.getCullHint()).append('\n');
            str.append("Bucket: ");
            str.append(sceneHints.getRenderBucketType()).append('\n');

            textArea.setText(str.toString());
        }
View Full Code Here

TOP

Related Classes of com.ardor3d.scenegraph.hint.SceneHints

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.