Skip to content
This repository was archived by the owner on Mar 1, 2025. It is now read-only.

Commit bbd84ef

Browse files
authored
Placement::tostring Fix fmt expression
1 parent 7d2c10f commit bbd84ef

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Base/Placement.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -221,7 +221,7 @@ std::string Placement::toString()
221221
double angle;
222222
rot.getRawValue(axis, angle);
223223

224-
return fmt::format("position ({.1f}, {.1f}, {.1f}), axis ({.1f}, {.1f}, {.1f}), angle {.1f}\n",
224+
return fmt::format("position ({:.1f}, {:.1f}, {:.1f}), axis ({:.1f}, {:.1f}, {:.1f}), angle {:.1f}\n",
225225
pos.x,
226226
pos.y,
227227
pos.z,

0 commit comments

Comments
 (0)