Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
C
coal
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Coal
coal
Commits
1b2ff9f5
Commit
1b2ff9f5
authored
6 years ago
by
Guilhem Saurel
Browse files
Options
Downloads
Plain Diff
Merge tag 'v1.0.1'
Release of version 1.0.1.
parents
f0364b8d
6531987e
No related branches found
No related tags found
No related merge requests found
Pipeline
#3535
passed
6 years ago
Stage: test
Changes
4
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
.travis.yml
+6
-3
6 additions, 3 deletions
.travis.yml
CMakeLists.txt
+1
-1
1 addition, 1 deletion
CMakeLists.txt
include/hpp/fcl/mesh_loader/loader.h
+2
-0
2 additions, 0 deletions
include/hpp/fcl/mesh_loader/loader.h
src/mesh_loader/loader.cpp
+2
-1
2 additions, 1 deletion
src/mesh_loader/loader.cpp
with
11 additions
and
5 deletions
.travis.yml
+
6
−
3
View file @
1b2ff9f5
language
:
cpp
env
:
-
BUILD_TYPE=Debug
-
BUILD_TYPE=Release
global
:
-
CTEST_PARALLEL_LEVEL=4
matrix
:
-
BUILD_TYPE=Debug
-
BUILD_TYPE=Release
matrix
:
include
:
...
...
@@ -32,7 +35,7 @@ script:
-
make -j4
# Run unit tests
-
make test
-
travis_wait 30 make test || travis_wait 30 ctest -VV
# Make sure we can install and uninstall with no issues
-
sudo make -j4 install
...
...
This diff is collapsed.
Click to expand it.
CMakeLists.txt
+
1
−
1
View file @
1b2ff9f5
...
...
@@ -170,4 +170,4 @@ IF(HPP_FCL_HAVE_OCTOMAP)
"-DHPP_FCL_HAVE_OCTOMAP -DFCL_HAVE_OCTOMAP -DOCTOMAP_MAJOR_VERSION=
${
OCTOMAP_MAJOR_VERSION
}
-DOCTOMAP_MINOR_VERSION=
${
OCTOMAP_MINOR_VERSION
}
-DOCTOMAP_PATCH_VERSION=
${
OCTOMAP_PATCH_VERSION
}
"
)
ENDIF
(
HPP_FCL_HAVE_OCTOMAP
)
setup_project_finalize
()
setup_
hpp_
project_finalize
()
This diff is collapsed.
Click to expand it.
include/hpp/fcl/mesh_loader/loader.h
+
2
−
0
View file @
1b2ff9f5
...
...
@@ -77,6 +77,8 @@ namespace fcl {
Key
(
const
std
::
string
&
f
,
const
Vec3f
&
s
,
const
NODE_TYPE
&
t
)
:
filename
(
f
),
scale
(
s
),
bvType
(
t
)
{}
bool
operator
<
(
const
CachedMeshLoader
::
Key
&
b
)
const
;
};
typedef
std
::
map
<
Key
,
CollisionGeometryPtr_t
>
Cache_t
;
...
...
This diff is collapsed.
Click to expand it.
src/mesh_loader/loader.cpp
+
2
−
1
View file @
1b2ff9f5
...
...
@@ -42,8 +42,9 @@
namespace
hpp
{
namespace
fcl
{
bool
operator
<
(
const
CachedMeshLoader
::
Key
&
a
,
const
CachedMeshLoader
::
Key
&
b
)
bool
CachedMeshLoader
::
Key
::
operator
<
(
const
CachedMeshLoader
::
Key
&
b
)
const
{
const
CachedMeshLoader
::
Key
&
a
=
*
this
;
if
(
a
.
bvType
<
b
.
bvType
)
return
true
;
if
(
a
.
bvType
>
b
.
bvType
)
return
false
;
for
(
int
i
=
0
;
i
<
3
;
++
i
)
{
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment