Fix punctuation, spacing and uppercasing issues (#14848)

This commit is contained in:
Alexandre Folle de Menezes
2026-07-20 09:47:33 -03:00
committed by GitHub
parent 73f6bca9fe
commit b7a6583eea
32 changed files with 291 additions and 363 deletions

View File

@@ -125,7 +125,7 @@ public:
template<class It, class = IteratorOnly<It> > BoundingBox3Base(It from, It to)
{
if (from == to)
throw Slic3r::InvalidArgument("Empty point set supplied to BoundingBox3Base constructor");
throw Slic3r::InvalidArgument("Empty point set supplied to BoundingBox3Base constructor.");
auto it = from;
this->min = it->template cast<typename PointType::Scalar>();