From b3460658e268938ac7c5174ea87a69237f134263 Mon Sep 17 00:00:00 2001 From: Ye Han <ye.han@kitware.com> Date: Mon, 8 Mar 2021 15:42:24 -0500 Subject: [PATCH] BUG: Unflag transformApplied in setVertexPositions --- Source/Geometry/Mesh/imstkPointSet.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/Geometry/Mesh/imstkPointSet.cpp b/Source/Geometry/Mesh/imstkPointSet.cpp index 3db886290..a0f3926c8 100644 --- a/Source/Geometry/Mesh/imstkPointSet.cpp +++ b/Source/Geometry/Mesh/imstkPointSet.cpp @@ -107,8 +107,8 @@ PointSet::getInitialVertexPosition(const size_t vertNum) void PointSet::setVertexPositions(std::shared_ptr<VecDataArray<double, 3>> vertices) { - m_vertexPositions = vertices; - m_transformApplied = false; + m_vertexPositions = vertices; + //m_transformApplied = false; this->updatePostTransformData(); } -- GitLab