50 void setPrimary(
Point* p) { primary_ = p; }
51 Point* primary()
const {
return primary_; }
53 void setSecondary(
Point* p) { secondary_ = p; }
54 Point* secondary()
const {
return secondary_; }
56 void setThreshold(
double v) { threshold_ = v; }
57 double threshold()
const {
return threshold_; }
62 double threshold_{0.0};
访问约束抽象基类
定义 AccessConstraint.hpp:41
virtual double evaluate(const TimePoint &time) const =0
评估约束的特征值
两点距离约束
定义 DistanceConstraint.hpp:35
绝对时间点
定义 TimePoint.hpp:108