VCRA-SZCZERBACKI-PointBasedRendering/stopwatch.cpp

00001 #include "stopwatch.h"
00002 
00003 void Stopwatch::start() {
00004     startTime = clock();
00005 }
00006 
00007 double Stopwatch::stop() {
00008     return ( (double)(clock()-startTime)/CLK_TCK );
00009 }

Generated on Thu Feb 15 09:09:20 2007 for Surface Splating by  doxygen 1.5.1-p1