PeriDyno 1.0.0
Loading...
Searching...
No Matches
TimeStamp.h
Go to the documentation of this file.
1
16#pragma once
17
18#include "Platform.h"
19
20namespace dyno {
24
26 {
27 public:
29 ~TimeStamp();
30
31 void mark();
32
33 bool operator > (TimeStamp& ts) { return (mTickTime > ts.mTickTime); }
34 bool operator < (TimeStamp& ts) { return (mTickTime < ts.mTickTime); }
35
36 private:
38 };
39
40}
bool operator>(TimeStamp &ts)
Definition TimeStamp.h:33
bool operator<(TimeStamp &ts)
Definition TimeStamp.h:34
uint64 mTickTime
Definition TimeStamp.h:37
This is an implementation of AdditiveCCD based on peridyno.
Definition Array.h:25
unsigned long long uint64
Definition Typedef.inl:31