Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Test: fix compilation error with Eigen 3.3.7 #553

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).

## [Unreleased]
- Fixed `normal_and_nearest_points` test (no need to have Eigen 3.4) ([#553](https://github.com/humanoid-path-planner/hpp-fcl/pull/553))
- [#549](https://github.com/humanoid-path-planner/hpp-fcl/pull/549)
- Optimize EPA: ignore useless faces in EPA's polytope; warm-start support computation for `Convex`; fix edge-cases witness points computation.
- Add `Serializable` trait to transform, collision data, collision geometries, bounding volumes, bvh models, hfields. Collision problems can now be serialized from C++ and sent to python and vice versa.
Expand Down
4 changes: 2 additions & 2 deletions test/normal_and_nearest_points.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -241,8 +241,8 @@ void test_normal_and_nearest_points(
}

template <size_t VecSize>
Eigen::Vector<FCL_REAL, VecSize> generateRandomVector(FCL_REAL min,
FCL_REAL max) {
Eigen::Matrix<FCL_REAL, VecSize, 1> generateRandomVector(FCL_REAL min,
FCL_REAL max) {
typedef Eigen::Vector<FCL_REAL, VecSize> VecType;
// Generate a random vector in the [min, max] range
VecType v = VecType::Random() * (max - min) * 0.5 +
Expand Down
Loading