Attempt to fix TBB issue
parent
35b6986d32
commit
66e1619214
|
@ -87,6 +87,17 @@ public:
|
||||||
p_.normalize();
|
p_.normalize();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// Copy constructor
|
||||||
|
Unit3(const Unit3& u) {
|
||||||
|
p_ = u.p_;
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Copy assignment
|
||||||
|
Unit3& operator=(const Unit3 & u) {
|
||||||
|
p_ = u.p_;
|
||||||
|
return *this;
|
||||||
|
}
|
||||||
|
|
||||||
/// Named constructor from Point3 with optional Jacobian
|
/// Named constructor from Point3 with optional Jacobian
|
||||||
static Unit3 FromPoint3(const Point3& point, //
|
static Unit3 FromPoint3(const Point3& point, //
|
||||||
OptionalJacobian<2, 3> H = boost::none);
|
OptionalJacobian<2, 3> H = boost::none);
|
||||||
|
|
Loading…
Reference in New Issue