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
650d9a99
Commit
650d9a99
authored
3 years ago
by
Andrew Wilson
Browse files
Options
Downloads
Patches
Plain Diff
REFAC: Improved error messages
parent
259edafc
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
Source/GeometryMappers/imstkOneToOneMap.cpp
+6
-12
6 additions, 12 deletions
Source/GeometryMappers/imstkOneToOneMap.cpp
Source/GeometryMappers/imstkTetraTriangleMap.cpp
+4
-4
4 additions, 4 deletions
Source/GeometryMappers/imstkTetraTriangleMap.cpp
with
10 additions
and
16 deletions
Source/GeometryMappers/imstkOneToOneMap.cpp
+
6
−
12
View file @
650d9a99
...
...
@@ -147,24 +147,18 @@ OneToOneMap::print() const
void
OneToOneMap
::
setParentGeometry
(
std
::
shared_ptr
<
Geometry
>
parent
)
{
auto
pointSet
=
std
::
dynamic_pointer_cast
<
PointSet
>
(
parent
);
if
(
parent
==
nullptr
)
{
LOG
(
WARNING
)
<<
"The geometry provided is not a PointSet!
\n
"
;
return
;
}
CHECK
(
parent
!=
nullptr
)
<<
"The parent geometry provided is nullptr"
;
CHECK
(
std
::
dynamic_pointer_cast
<
PointSet
>
(
parent
)
!=
nullptr
)
<<
"The parent geometry provided is not PointSet"
;
GeometryMap
::
setParentGeometry
(
parent
);
}
void
OneToOneMap
::
setChildGeometry
(
std
::
shared_ptr
<
Geometry
>
child
)
{
auto
pointSet
=
std
::
dynamic_pointer_cast
<
PointSet
>
(
child
);
if
(
pointSet
==
nullptr
)
{
LOG
(
WARNING
)
<<
"The geometry provided is not a PointSet!
\n
"
;
return
;
}
CHECK
(
child
!=
nullptr
)
<<
"The child geometry provided is nullptr"
;
CHECK
(
std
::
dynamic_pointer_cast
<
PointSet
>
(
child
)
!=
nullptr
)
<<
"The child geometry provided is not PointSet"
;
GeometryMap
::
setChildGeometry
(
child
);
}
...
...
This diff is collapsed.
Click to expand it.
Source/GeometryMappers/imstkTetraTriangleMap.cpp
+
4
−
4
View file @
650d9a99
...
...
@@ -162,18 +162,18 @@ TetraTriangleMap::isValid() const
void
TetraTriangleMap
::
setParentGeometry
(
std
::
shared_ptr
<
Geometry
>
parent
)
{
CHECK
(
parent
!=
nullptr
)
<<
"The parent geometry provided is nullptr"
;
CHECK
(
std
::
dynamic_pointer_cast
<
TetrahedralMesh
>
(
parent
)
!=
nullptr
)
<<
"The geometry provided as parent is not of tetrahedral type"
;
"The parent geometry provided is not TetrahedralMesh"
;
GeometryMap
::
setParentGeometry
(
parent
);
}
void
TetraTriangleMap
::
setChildGeometry
(
std
::
shared_ptr
<
Geometry
>
child
)
{
CHECK
(
child
!=
nullptr
)
<<
"The child geometry provided is nullptr"
;
CHECK
(
std
::
dynamic_pointer_cast
<
SurfaceMesh
>
(
child
)
!=
nullptr
)
<<
"The geometry provided as child is not of triangular type (surface)"
;
"The child geometry provided is not SurfaceMesh"
;
GeometryMap
::
setChildGeometry
(
child
);
}
...
...
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