From dfba4bd4e520b97f84206a94f49704ad97e8092f Mon Sep 17 00:00:00 2001 From: cutealien Date: Fri, 25 Jun 2021 16:28:44 +0000 Subject: [PATCH] Comment fix. git-svn-id: svn://svn.code.sf.net/p/irrlicht/code/trunk@6223 dfc29bdd-3216-0410-991c-e03cc46cb475 --- include/IGeometryCreator.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/IGeometryCreator.h b/include/IGeometryCreator.h index 277a3b64..9f31b261 100644 --- a/include/IGeometryCreator.h +++ b/include/IGeometryCreator.h @@ -185,11 +185,11 @@ public: //! Create a torus mesh /** Note: Segments might get reduced to ensure it fits into 16-bit meshbuffer. - With 256 segments for minor and major circle you'll hit the maximum. + With 255 segments for minor and major circle you'll hit the maximum. \param majorRadius Starting from mesh center \param minorRadius Starting from a circle at majorRadius distance around center - \param majorSegments Segments for major circle. Will use at least 3. - \param minorSegments Segments for minor circle. Will use at least 3 + \param majorSegments Segments for major circle. Will use at least 3 segments. + \param minorSegments Segments for minor circle. Will use at least 3 segments. */ virtual IMesh* createTorusMesh(f32 majorRadius, f32 minorRadius, u32 majorSegments = 32, u32 minorSegments = 16) const = 0;