Skip to content
Snippets Groups Projects
Commit 0da2d68b authored by Alexis Girault's avatar Alexis Girault
Browse files

BUG: Correct build errors on Windows

parent cd5713b3
No related branches found
No related tags found
3 merge requests!89Merge Refactoring into Master,!83Style corrections,!80Geometry sprint
......@@ -22,6 +22,7 @@
#ifndef imstkSurfaceMesh_h
#define imstkSurfaceMesh_h
#include <array>
#include <set>
#include "imstkMesh.h"
......
......@@ -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);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment