예제 #1
0
파일: IMU.java 프로젝트: pdaquino/EECS568
 // saves time elaspsed so we know how much time was spent moving between images
 public void mark() {
   time.stop();
   T = (double) time.getLastTaskTimeMillis();
   T /= 1000; // convert to seconds
   time.start();
 }
예제 #2
0
파일: IMU.java 프로젝트: pdaquino/EECS568
 public IMU() {
   time = new StopWatch();
   time.start();
   Vxyzrpy = new double[6];
 }