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
0da2d68b
Commit
0da2d68b
authored
Apr 01, 2016
by
Alexis Girault
Browse files
BUG: Correct build errors on Windows
parent
cd5713b3
Changes
2
Hide whitespace changes
Inline
Side-by-side
Base/Geometry/imstkSurfaceMesh.h
View file @
0da2d68b
...
...
@@ -22,6 +22,7 @@
#ifndef imstkSurfaceMesh_h
#define imstkSurfaceMesh_h
#include
<array>
#include
<set>
#include
"imstkMesh.h"
...
...
Examples/Sandbox/main.cpp
View file @
0da2d68b
...
...
@@ -29,8 +29,8 @@ int main()
auto
cubeGeom
=
std
::
make_shared
<
imstk
::
Cube
>
();
cubeGeom
->
scale
(
0.5
);
cubeGeom
->
rotate
(
imstk
::
UP
,
M_PI
_
4
);
cubeGeom
->
rotate
(
imstk
::
RIGHT
,
M_PI
_
4
);
cubeGeom
->
rotate
(
imstk
::
UP
,
M_PI
/
4
);
cubeGeom
->
rotate
(
imstk
::
RIGHT
,
M_PI
/
4
);
cubeGeom
->
translate
(
2
,
1
,
0.5
);
auto
cubeObj
=
std
::
make_shared
<
imstk
::
VisualObject
>
(
"VisualCube"
);
cubeObj
->
setVisualGeometry
(
cubeGeom
);
...
...
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