Skip to content

Commit

Permalink
Update LevelSetTubes.h
Browse files Browse the repository at this point in the history
Remove unneeded template parameter.

Signed-off-by: ghurstunither <[email protected]>
  • Loading branch information
ghurstunither committed Oct 11, 2024
1 parent dd5e76b commit a32a4f6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions openvdb/openvdb/tools/LevelSetTubes.h
Original file line number Diff line number Diff line change
Expand Up @@ -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 <typename GridType, typename InterruptT>
template <typename GridType>
typename GridType::Ptr
createLevelSetCapsule(const Vec3s& pt1, const Vec3s& pt2, float radius,
float voxelSize, float halfWidth = float(LEVEL_SET_HALF_WIDTH), bool threaded = true);
Expand Down Expand Up @@ -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 <typename GridType, typename InterruptT>
template <typename GridType>
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);
Expand Down

0 comments on commit a32a4f6

Please sign in to comment.