VOXCONVERT: added logging for rotate and mirror features

master
Martin Gerhardy 2021-12-18 14:14:10 +01:00
parent b52e451fa0
commit db4f102a0a
1 changed files with 2 additions and 0 deletions

View File

@ -343,6 +343,7 @@ void VoxConvert::mirror(const core::String& axisStr, voxel::VoxelVolumes& volume
if (axis == math::Axis::None) {
return;
}
Log::info("Mirror on axis %c", axisStr[0]);
for (voxel::VoxelVolume &v : volumes) {
voxel::RawVolume *old = v.volume;
if (old == nullptr) {
@ -358,6 +359,7 @@ void VoxConvert::rotate(const core::String& axisStr, voxel::VoxelVolumes& volume
if (axis == math::Axis::None) {
return;
}
Log::info("Rotate on axis %c", axisStr[0]);
for (voxel::VoxelVolume &v : volumes) {
voxel::RawVolume *old = v.volume;
if (old == nullptr) {