Examples of IVector


Examples of mikera.vectorz.IVector

      vector3s[i]=v;
    }   
  }
 
  public void timeIVectorAddition(int runs) {
    IVector v=Vector3.of(1,2,3);
    for (int i=0; i<runs; i++) {
      IVector v2=ivectors[i&15];
      v2.set(0,v.get(0)+v2.get(0));
    }
    r=v.get(0);
  }
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.