Skip to content

Commit be8dc8f

Browse files
committed
Add missing COAL_DLLAPI to fit
1 parent edb1180 commit be8dc8f

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

include/coal/internal/BV_fitter.h

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -56,19 +56,19 @@ void fit(Vec3s* ps, unsigned int n, BV& bv) {
5656
}
5757

5858
template <>
59-
void fit<OBB>(Vec3s* ps, unsigned int n, OBB& bv);
59+
COAL_DLLAPI void fit<OBB>(Vec3s* ps, unsigned int n, OBB& bv);
6060

6161
template <>
62-
void fit<RSS>(Vec3s* ps, unsigned int n, RSS& bv);
62+
COAL_DLLAPI void fit<RSS>(Vec3s* ps, unsigned int n, RSS& bv);
6363

6464
template <>
65-
void fit<kIOS>(Vec3s* ps, unsigned int n, kIOS& bv);
65+
COAL_DLLAPI void fit<kIOS>(Vec3s* ps, unsigned int n, kIOS& bv);
6666

6767
template <>
68-
void fit<OBBRSS>(Vec3s* ps, unsigned int n, OBBRSS& bv);
68+
COAL_DLLAPI void fit<OBBRSS>(Vec3s* ps, unsigned int n, OBBRSS& bv);
6969

7070
template <>
71-
void fit<AABB>(Vec3s* ps, unsigned int n, AABB& bv);
71+
COAL_DLLAPI void fit<AABB>(Vec3s* ps, unsigned int n, AABB& bv);
7272

7373
/// @brief The class for the default algorithm fitting a bounding volume to a
7474
/// set of points

0 commit comments

Comments
 (0)