Skip to content

Commit 9d70df7

Browse files
committed
Fix mesh _vertices
1 parent a8c691e commit 9d70df7

File tree

1 file changed

+2
-2
lines changed
  • PhotoshopAPI/src/Core/Geometry

1 file changed

+2
-2
lines changed

PhotoshopAPI/src/Core/Geometry/Mesh.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -358,8 +358,8 @@ namespace Geometry
358358
"Unable to replace vertices with differently sized vertex vector. This method is only intended to update existing vertices. If you wish to to rebuild the mesh re-initialize it please.");
359359
}
360360

361-
m_Vertices = vertices;
362-
m_BoundingBox = BoundingBox<T>::compute(vertices);
361+
m_Vertices = _vertices;
362+
m_BoundingBox = BoundingBox<T>::compute(_vertices);
363363
rebuild_face_bboxes();
364364
rebuild_octree();
365365
}

0 commit comments

Comments
 (0)