Package de.ailis.jollada.model

Examples of de.ailis.jollada.model.DataFlowParams


     *            The element attributes.
     */

    private void enterMaterialBindParam(final Attributes attributes)
    {
        final DataFlowParams params = this.geometryInstance
                .getMaterialBinding().getParams();
        final DataFlowParam param = new DataFlowParam(
            attributes.getValue("type"));
        param.setName(attributes.getValue("name"));
        param.setSemantic(attributes.getValue("semantic"));
        param.setSid(attributes.getValue("sid"));
        params.add(param);
        enterElement(ParserMode.BIND_MATERIAL_PARAM);
    }
View Full Code Here

TOP

Related Classes of de.ailis.jollada.model.DataFlowParams

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.