org.jzy3d.maths
Class TicToc

java.lang.Object
  extended by org.jzy3d.maths.TicToc

public class TicToc
extends java.lang.Object

TicToc allows measuring elapsed time between a call to tic() and a call to toc(). Retrieving elapsed time is done by calling either: elapsedNanosecond(), elapsedMilisecond() or elapsedSecond().

Author:
Martin Pernollet

Constructor Summary
TicToc()
           
 
Method Summary
 double elapsedMicrosecond()
           
 double elapsedMilisecond()
           
 long elapsedNanosecond()
           
 double elapsedSecond()
           
 void tic()
           
 void toc()
           
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

TicToc

public TicToc()
Method Detail

tic

public void tic()

toc

public void toc()

elapsedNanosecond

public long elapsedNanosecond()

elapsedMicrosecond

public double elapsedMicrosecond()

elapsedMilisecond

public double elapsedMilisecond()

elapsedSecond

public double elapsedSecond()