• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

paulmthompson / WhiskerToolbox / 16255122073

14 Jul 2025 12:27AM UTC coverage: 74.211% (-1.4%) from 75.635%
16255122073

push

github

paulmthompson
refactoring out core geometry library

1 of 24 new or added lines in 2 files covered. (4.17%)

13623 of 18357 relevant lines covered (74.21%)

2325.85 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

25.0
/src/WhiskerToolbox/CoreGeometry/src/points.cpp
1
#include "CoreGeometry/points.hpp"
2

3
template<typename T>
NEW
4
Point2D<T>::Point2D() : x(0), y(0) {}
×
5

6
template<typename T>
7
Point2D<T>::Point2D(T x, T y) : x(x), y(y) {}
2,909✔
8

9
template<typename T>
NEW
10
bool Point2D<T>::operator==(Point2D<T> const & other) const {
×
NEW
11
    return x == other.x && y == other.y;
×
12
}
13
    
14

15
template struct Point2D<float>;
16
template struct Point2D<uint32_t>;
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc