From a32a4f65eabc36f885e519ad9b35f0cecd01626d Mon Sep 17 00:00:00 2001 From: ghurstunither <62885595+ghurstunither@users.noreply.github.com> Date: Fri, 11 Oct 2024 09:07:23 -0400 Subject: [PATCH] Update LevelSetTubes.h Remove unneeded template parameter. Signed-off-by: ghurstunither <62885595+ghurstunither@users.noreply.github.com> --- openvdb/openvdb/tools/LevelSetTubes.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/openvdb/openvdb/tools/LevelSetTubes.h b/openvdb/openvdb/tools/LevelSetTubes.h index be0cb29a29..356bc7013e 100644 --- a/openvdb/openvdb/tools/LevelSetTubes.h +++ b/openvdb/openvdb/tools/LevelSetTubes.h @@ -65,7 +65,7 @@ createLevelSetCapsule(InterruptT& interrupter, const Vec3s& pt1, const Vec3s& pt /// @param threaded if true multi-threading is enabled (true by default) /// /// @note @c GridType::ValueType must be a floating-point scalar. -template +template typename GridType::Ptr createLevelSetCapsule(const Vec3s& pt1, const Vec3s& pt2, float radius, float voxelSize, float halfWidth = float(LEVEL_SET_HALF_WIDTH), bool threaded = true); @@ -104,7 +104,7 @@ createLevelSetRoundCone(InterruptT& interrupter, /// @param threaded if true multi-threading is enabled (true by default) /// /// @note @c GridType::ValueType must be a floating-point scalar. -template +template typename GridType::Ptr createLevelSetRoundCone(const Vec3s& pt1, const Vec3s& pt2, float radius1, float radius2, float voxelSize, float halfWidth = float(LEVEL_SET_HALF_WIDTH), bool threaded = true);