add means() function to Point2.h
parent
7082b67bc3
commit
4372ed82f2
|
|
@ -72,6 +72,9 @@ GTSAM_EXPORT boost::optional<Point2> circleCircleIntersection(double R_d, double
|
||||||
*/
|
*/
|
||||||
GTSAM_EXPORT std::list<Point2> circleCircleIntersection(Point2 c1, Point2 c2, boost::optional<Point2> fh);
|
GTSAM_EXPORT std::list<Point2> circleCircleIntersection(Point2 c1, Point2 c2, boost::optional<Point2> fh);
|
||||||
|
|
||||||
|
/// Calculate the two means of a set of Point2 pairs
|
||||||
|
GTSAM_EXPORT Point2Pair means(const std::vector<Point2Pair> &abPointPairs);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief Intersect 2 circles
|
* @brief Intersect 2 circles
|
||||||
* @param c1 center of first circle
|
* @param c1 center of first circle
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue