Searched defs:Point2f (Results 1 - 1 of 1) sorted by relevance

/external/tensorflow/tensorflow/examples/android/jni/object_tracking/
H A Dgeom.h32 class Point2f { class in namespace:tf_tracking
34 Point2f() : x(0.0f), y(0.0f) {} function in class:tf_tracking::Point2f
35 Point2f(const float x, const float y) : x(x), y(y) {} function in class:tf_tracking::Point2f
37 inline Point2f operator- (const Point2f& that) const {
38 return Point2f(this->x - that.x, this->y - that.y);
41 inline Point2f operator+ (const Point2f& that) const {
42 return Point2f(this->x + that.x, this->y + that.y);
45 inline Point2f
[all...]

Completed in 138 milliseconds