// This file is part of libigl, a simple c++ geometry processing library. // // Copyright (C) 2013 Alec Jacobson // // This Source Code Form is subject to the terms of the Mozilla Public License // v. 2.0. If a copy of the MPL was not distributed with this file, You can // obtain one at http://mozilla.org/MPL/2.0/. #include "get_seconds.h" // NULL for Linux #include #if _WIN32 # include IGL_INLINE double igl::get_seconds() { // This does not work on mac os x with glut in the main loop return double(clock())/CLOCKS_PER_SEC; } #else # include IGL_INLINE double igl::get_seconds() { timeval time; gettimeofday(&time, NULL); return time.tv_sec + time.tv_usec / 1e6; // This does not work on mac os x with glut in the main loop //return double(clock())/CLOCKS_PER_SEC; } #endif