Package jsynoptic.plugins.java3d

Examples of jsynoptic.plugins.java3d.Tuple3fAnimator


    // required for dynamic node creation
    public Tuple3fAnimatorNode(Tree tree, Object graphObject,
            boolean getChildren) {
        super(tree, graphObject, getChildren);
        // by default name is equal to class name
        Tuple3fAnimator ta = (Tuple3fAnimator) getGraphObject();
        String n = ta.getData().getClass().getName();
        int k = n.lastIndexOf('.');
        _name = n.substring(k + 1);
        _icon = getIcon(ta.getData());
        _description = getDescription(ta.getData());
    }
View Full Code Here

TOP

Related Classes of jsynoptic.plugins.java3d.Tuple3fAnimator

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.