Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
reneX
iMSTK
Commits
847d4fbd
Commit
847d4fbd
authored
Aug 07, 2019
by
Sreekanth Arikatla
Browse files
Update imstkLogUtility.cpp
parent
0fba2d6d
Changes
3
Hide whitespace changes
Inline
Side-by-side
Source/Core/imstkLogUtility.cpp
View file @
847d4fbd
...
...
@@ -19,7 +19,6 @@ limitations under the License.
=========================================================================*/
#include "imstkLogUtility.h"
#include <experimental/coroutine>
#ifdef WIN32
#include <windows.h>
...
...
Source/Geometry/Analytic/imstkCube.cpp
View file @
847d4fbd
...
...
@@ -52,7 +52,8 @@ Cube::setWidth(const double w)
{
if
(
w
<=
0
)
{
LOG
(
FATAL
)
<<
"Cube::setWidth error: width should be positive."
;
LOG
(
WARNING
)
<<
"Cube::setWidth error: width should be positive."
;
return
;
}
if
(
m_width
==
w
)
{
...
...
Source/Geometry/Analytic/imstkPlane.cpp
View file @
847d4fbd
...
...
@@ -70,7 +70,7 @@ Plane::setWidth(const double w)
{
if
(
w
<=
0
)
{
LOG
(
FATAL
)
<<
"Plane::setWidth error: width should be positive."
;
LOG
(
WARNING
)
<<
"Plane::setWidth error: width should be positive."
;
return
;
}
if
(
m_width
==
w
)
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment