mirror of
https://gitlab.com/libeigen/eigen.git
synced 2025-06-04 18:54:00 +08:00
fix doc compilation
This commit is contained in:
parent
9ba15cd63c
commit
d64e68c8bc
@ -5,7 +5,11 @@
|
|||||||
using namespace Eigen;
|
using namespace Eigen;
|
||||||
typedef AlignedBox<double, 2> Box2d;
|
typedef AlignedBox<double, 2> Box2d;
|
||||||
|
|
||||||
Box2d internal::bounding_box(const Vector2d &v) { return Box2d(v, v); } //compute the bounding box of a single point
|
namespace Eigen {
|
||||||
|
namespace internal {
|
||||||
|
Box2d bounding_box(const Vector2d &v) { return Box2d(v, v); } //compute the bounding box of a single point
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
struct PointPointMinimizer //how to compute squared distances between points and rectangles
|
struct PointPointMinimizer //how to compute squared distances between points and rectangles
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user