More Code Cleanup (#2192)

* Harmonizing ( and ) in function calls
* static const -> constexpr
* Fix compile issue
* Unify shader tab size
* Add _fs and _vs to shaders
* Harmonize spacing
This commit is contained in:
Alexander Bock
2022-07-26 11:22:41 +02:00
committed by GitHub
parent 9cc4c595a8
commit c1252902c7
223 changed files with 2359 additions and 3244 deletions
+2 -2
View File
@@ -72,10 +72,10 @@ documentation::Documentation TimeFrameInterval::Documentation() {
}
bool TimeFrameInterval::isActive(const Time& time) const {
if (_hasStart && time.j2000Seconds() < _start ) {
if (_hasStart && time.j2000Seconds() < _start) {
return false;
}
if (_hasEnd && time.j2000Seconds() >= _end ) {
if (_hasEnd && time.j2000Seconds() >= _end) {
return false;
}
return true;