Package cofh.repack.codechicken.lib.vec

Examples of cofh.repack.codechicken.lib.vec.Rectangle4i.include()


        Rectangle4i rect = null;
        for (QBQuad q : plane) {
          if (rect == null) {
            rect = q.flatten();
          } else {
            rect.include(q.flatten());
          }
        }

        QBImage img = new QBImage();
        img.data = new int[rect.w][rect.h];
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.