Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
iMSTK
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Analyze
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
Ben Boeckel
iMSTK
Commits
ee1e637e
Commit
ee1e637e
authored
3 years ago
by
Sreekanth Arikatla
Committed by
Andrew Wilson
3 years ago
Browse files
Options
Downloads
Patches
Plain Diff
TEST: Add tetra to point set CD tests
parent
d6560ef5
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Source/CollisionDetection/Testing/imstkTetraToPointSetCDTest.cpp
+140
-0
140 additions, 0 deletions
...CollisionDetection/Testing/imstkTetraToPointSetCDTest.cpp
with
140 additions
and
0 deletions
Source/CollisionDetection/Testing/imstkTetraToPointSetCDTest.cpp
0 → 100644
+
140
−
0
View file @
ee1e637e
/*=========================================================================
Library: iMSTK
Copyright (c) Kitware, Inc. & Center for Modeling, Simulation,
& Imaging in Medicine, Rensselaer Polytechnic Institute.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0.txt
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
=========================================================================*/
#include
"gtest/gtest.h"
#include
"imstkPointSet.h"
#include
"imstkTetrahedralMesh.h"
#include
"imstkTetraToPointSetCD.h"
using
namespace
imstk
;
TEST
(
imstkTetraToPointSetCDTest
,
IntersectionTestAB
)
{
// Create tetrahedron
auto
verticesPtr
=
std
::
make_shared
<
VecDataArray
<
double
,
3
>>
(
4
);
auto
indicesPtr
=
std
::
make_shared
<
VecDataArray
<
int
,
4
>>
(
1
);
VecDataArray
<
double
,
3
>&
vertices
=
*
verticesPtr
;
VecDataArray
<
int
,
4
>&
indices
=
*
indicesPtr
;
vertices
[
0
]
=
Vec3d
(
0.0
,
0.0
,
0.0
);
vertices
[
1
]
=
Vec3d
(
1.0
,
0.0
,
0.0
);
vertices
[
2
]
=
Vec3d
(
0.0
,
1.0
,
0.0
);
vertices
[
3
]
=
Vec3d
(
0.0
,
0.0
,
1.0
);
indices
[
0
]
=
Vec4i
(
0
,
1
,
2
,
3
);
auto
tetMesh
=
std
::
make_shared
<
TetrahedralMesh
>
();
tetMesh
->
initialize
(
verticesPtr
,
indicesPtr
);
// Create point set
auto
pointSet
=
std
::
make_shared
<
PointSet
>
();
auto
verxPtr
=
std
::
make_shared
<
VecDataArray
<
double
,
3
>>
(
1
);
(
*
verxPtr
)[
0
]
=
Vec3d
(
0.0
,
0.0
,
0.0
);
double
baryCoord
[
4
]
=
{
0.2
,
0.3
,
0.1
,
0.4
};
// All non-negative and should sum to 1
// Create a point inside the tetrahedron from the barycentric coordinates
for
(
int
i
=
0
;
i
<
4
;
++
i
)
{
(
*
verxPtr
)[
0
]
+=
baryCoord
[
i
]
*
vertices
[
i
];
}
pointSet
->
initialize
(
verxPtr
);
std
::
cout
<<
(
*
verxPtr
)[
0
];
// create collision
TetraToPointSetCD
m_tetraToPointSetCD
;
m_tetraToPointSetCD
.
setInput
(
pointSet
,
0
);
m_tetraToPointSetCD
.
setInput
(
tetMesh
,
1
);
m_tetraToPointSetCD
.
setGenerateCD
(
true
,
true
);
// Generate both A and B
m_tetraToPointSetCD
.
update
();
std
::
shared_ptr
<
CollisionData
>
colData
=
m_tetraToPointSetCD
.
getCollisionData
();
// Should be one element on side A, 0 on side B (default CD data is not generated for the sphere)
EXPECT_EQ
(
1
,
colData
->
elementsA
.
getSize
());
EXPECT_EQ
(
1
,
colData
->
elementsB
.
getSize
());
// That element should be a point directional element
EXPECT_EQ
(
CollisionElementType
::
CellIndex
,
colData
->
elementsA
[
0
].
m_type
);
EXPECT_EQ
(
CollisionElementType
::
CellIndex
,
colData
->
elementsB
[
0
].
m_type
);
// Check cell types
EXPECT_EQ
(
IMSTK_VERTEX
,
colData
->
elementsA
[
0
].
m_element
.
m_CellIndexElement
.
cellType
);
EXPECT_EQ
(
IMSTK_TETRAHEDRON
,
colData
->
elementsB
[
0
].
m_element
.
m_CellIndexElement
.
cellType
);
// Check cell types
EXPECT_EQ
(
0
,
colData
->
elementsA
[
0
].
m_element
.
m_CellIndexElement
.
ids
[
0
]);
EXPECT_EQ
(
0
,
colData
->
elementsB
[
0
].
m_element
.
m_CellIndexElement
.
ids
[
0
]);
}
TEST
(
imstkTetraToPointSetCDTest
,
NonIntersectionTestAB
)
{
// Create tetrahedron
auto
verticesPtr
=
std
::
make_shared
<
VecDataArray
<
double
,
3
>>
(
4
);
auto
indicesPtr
=
std
::
make_shared
<
VecDataArray
<
int
,
4
>>
(
1
);
VecDataArray
<
double
,
3
>&
vertices
=
*
verticesPtr
;
VecDataArray
<
int
,
4
>&
indices
=
*
indicesPtr
;
vertices
[
0
]
=
Vec3d
(
0.0
,
0.0
,
0.0
);
vertices
[
1
]
=
Vec3d
(
1.0
,
0.0
,
0.0
);
vertices
[
2
]
=
Vec3d
(
0.0
,
1.0
,
0.0
);
vertices
[
3
]
=
Vec3d
(
0.0
,
0.0
,
1.0
);
indices
[
0
]
=
Vec4i
(
0
,
1
,
2
,
3
);
auto
tetMesh
=
std
::
make_shared
<
TetrahedralMesh
>
();
tetMesh
->
initialize
(
verticesPtr
,
indicesPtr
);
// Create point set
auto
pointSet
=
std
::
make_shared
<
PointSet
>
();
auto
verxPtr
=
std
::
make_shared
<
VecDataArray
<
double
,
3
>>
(
1
);
(
*
verxPtr
)[
0
]
=
Vec3d
(
1.0
,
1.0
,
1.0
);
pointSet
->
initialize
(
verxPtr
);
// create collision
TetraToPointSetCD
m_tetraToPointSetCD
;
m_tetraToPointSetCD
.
setInput
(
pointSet
,
0
);
m_tetraToPointSetCD
.
setInput
(
tetMesh
,
1
);
m_tetraToPointSetCD
.
setGenerateCD
(
true
,
true
);
// Generate both A and B
m_tetraToPointSetCD
.
update
();
std
::
shared_ptr
<
CollisionData
>
colData
=
m_tetraToPointSetCD
.
getCollisionData
();
// Should have no elements
EXPECT_EQ
(
0
,
colData
->
elementsA
.
getSize
());
EXPECT_EQ
(
0
,
colData
->
elementsB
.
getSize
());
}
int
imstkTetraToPointSetCDTest
(
int
argc
,
char
*
argv
[])
{
// Init Google Test & Mock
::
testing
::
InitGoogleTest
(
&
argc
,
argv
);
// Run tests with gtest
return
RUN_ALL_TESTS
();
}
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