Package de.ailis.jollada.model

Examples of de.ailis.jollada.model.Polygons


    @Override
    public Polygons build()
    {
        if (this.data == null)
            throw new IllegalStateException("data not set");
        final Polygons polygons = new Polygons(this.count);
        polygons.getData().addAll(this.data);
        polygons.setMaterial(this.material);
        polygons.setName(this.name);
        polygons.getInputs().addAll(this.inputs);
        return polygons;
    }
View Full Code Here

TOP

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

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.