Mercurial > hg > orthanc-stone
changeset 953:118fc5c85d07
Fixed call to renamed method SetSize --> SetSizeInVoxels
author | Benjamin Golinvaux <bgo@osimis.io> |
---|---|
date | Fri, 16 Aug 2019 16:24:11 +0200 |
parents | bf35bffd93da |
children | bd979d435e9d a7351ad54960 |
files | UnitTestsSources/UnitTestsMain.cpp |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/UnitTestsSources/UnitTestsMain.cpp Tue Aug 13 17:31:29 2019 +0200 +++ b/UnitTestsSources/UnitTestsMain.cpp Fri Aug 16 16:24:11 2019 +0200 @@ -642,7 +642,7 @@ TEST(VolumeImageGeometry, Basic) { OrthancStone::VolumeImageGeometry g; - g.SetSize(10, 20, 30); + g.SetSizeInVoxels(10, 20, 30); g.SetVoxelDimensions(1, 2, 3); OrthancStone::Vector p = g.GetCoordinates(0, 0, 0);