Package libshapedraw.shape

Examples of libshapedraw.shape.WireframeLines


            ArrayList<ReadonlyVector3> vec = new ArrayList<ReadonlyVector3>(pairs.length / 2);
            for (int i = 0; i < pairs.length; i += 2) {
                vec.add(new Vector3(pairs[i]*SCALE, pairs[i+1]*SCALE, 0));
            }
            libShapeDraw.addShape(
                    new WireframeLines(origin, vec)
                    .setLineStyle(lineStyle)
                    .addTransform(shapeRotate));
        }
    }
View Full Code Here

TOP

Related Classes of libshapedraw.shape.WireframeLines

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.