PHP 7.4.33
Preview: Clock.js Size: 828 B
/var/www/uibuilder.cmshelp.dk/httpdocs/node_modules/three/src/core/Clock.js
class Clock {

	constructor( autoStart = true ) {

		this.autoStart = autoStart;

		this.startTime = 0;
		this.oldTime = 0;
		this.elapsedTime = 0;

		this.running = false;

	}

	start() {

		this.startTime = now();

		this.oldTime = this.startTime;
		this.elapsedTime = 0;
		this.running = true;

	}

	stop() {

		this.getElapsedTime();
		this.running = false;
		this.autoStart = false;

	}

	getElapsedTime() {

		this.getDelta();
		return this.elapsedTime;

	}

	getDelta() {

		let diff = 0;

		if ( this.autoStart && ! this.running ) {

			this.start();
			return 0;

		}

		if ( this.running ) {

			const newTime = now();

			diff = ( newTime - this.oldTime ) / 1000;
			this.oldTime = newTime;

			this.elapsedTime += diff;

		}

		return diff;

	}

}

function now() {

	return performance.now();

}

export { Clock };

Directory Contents

Dirs: 0 × Files: 18
Name Size Perms Modified Actions
10.14 KB lrw-r--r-- 2025-03-28 11:04:37
Edit Download
20.93 KB lrw-r--r-- 2025-03-28 11:04:37
Edit Download
828 B lrw-r--r-- 2025-03-28 11:04:38
Edit Download
2.67 KB lrw-r--r-- 2025-03-28 11:04:38
Edit Download
725 B lrw-r--r-- 2025-03-28 11:04:38
Edit Download
631 B lrw-r--r-- 2025-03-28 11:04:38
Edit Download
562 B lrw-r--r-- 2025-03-28 11:04:38
Edit Download
747 B lrw-r--r-- 2025-03-28 11:04:38
Edit Download
2.43 KB lrw-r--r-- 2025-03-28 11:04:38
Edit Download
6.13 KB lrw-r--r-- 2025-03-28 11:04:38
Edit Download
577 B lrw-r--r-- 2025-03-28 11:04:38
Edit Download
37.07 KB lrw-r--r-- 2025-03-28 11:04:38
Edit Download
2.60 KB lrw-r--r-- 2025-03-28 11:04:39
Edit Download
3.95 KB lrw-r--r-- 2025-03-28 11:04:39
Edit Download
463 B lrw-r--r-- 2025-03-28 11:04:39
Edit Download
481 B lrw-r--r-- 2025-03-28 11:04:39
Edit Download
199 B lrw-r--r-- 2025-03-28 11:04:39
Edit Download
1.31 KB lrw-r--r-- 2025-03-28 11:04:39
Edit Download
If ZipArchive is unavailable, a .tar will be created (no compression).