Skip to content

Commit 6459919

Browse files
committed
floating point type
1 parent 226dae1 commit 6459919

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

src/ShapeMatchingPlugin/ShapeMatchingForceField.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,9 @@ namespace sofa::component::forcefield
3131
using namespace sofa::defaulttype;
3232

3333
int ShapeMatchingForceFieldClass = core::RegisterObject("Meshless deformations based on shape matching")
34-
.add< ShapeMatchingForceField<Vec3dTypes> >()
34+
.add< ShapeMatchingForceField<Vec3Types> >()
3535
;
3636

37-
template class SOFA_SHAPEMATCHINGPLUGIN_API ShapeMatchingForceField<Vec3dTypes>;
37+
template class SOFA_SHAPEMATCHINGPLUGIN_API ShapeMatchingForceField<Vec3Types>;
3838

3939
} // namespace sofa::component::forcefield

src/ShapeMatchingPlugin/ShapeMatchingForceField.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ class ShapeMatchingForceField : public core::behavior::ForceField<DataTypes>
7171
};
7272

7373
#if !defined(SOFA_COMPONENT_FORCEFIELD_SHAPEMATCHINGFORCEFIELD_CPP)
74-
extern template class SOFA_SHAPEMATCHINGPLUGIN_API ShapeMatchingForceField<defaulttype::Vec3dTypes>;
74+
extern template class SOFA_SHAPEMATCHINGPLUGIN_API ShapeMatchingForceField<defaulttype::Vec3Types>;
7575
#endif // !defined(SOFA_COMPONENT_FORCEFIELD_SHAPEMATCHINGFORCEFIELD_CPP)
7676

7777
} // namespace sofa::component::forcefield

src/ShapeMatchingPlugin/ShapeMatchingRotationFinder.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,10 +39,10 @@ using namespace sofa::defaulttype;
3939

4040
// Register in the Factory
4141
int ShapeMatchingRotationFinderClass = core::RegisterObject("ShapeMatchingRotationFinder")
42-
.add< ShapeMatchingRotationFinder< Vec3dTypes > >()
42+
.add< ShapeMatchingRotationFinder< Vec3Types > >()
4343
.addAlias("RotationFinder")
4444
;
4545

46-
template class SOFA_SHAPEMATCHINGPLUGIN_API ShapeMatchingRotationFinder< defaulttype::Vec3dTypes >;
46+
template class SOFA_SHAPEMATCHINGPLUGIN_API ShapeMatchingRotationFinder< defaulttype::Vec3Types >;
4747

4848
} // namespace sofa::component::container

src/ShapeMatchingPlugin/ShapeMatchingRotationFinder.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ class ShapeMatchingRotationFinder : public sofa::core::behavior::RotationFinder<
117117
};
118118

119119
#if !defined(SOFA_COMPONENT_CONTAINER_SHAPEMATCHINGROTATIONFINDER_CPP)
120-
extern template class SOFA_SHAPEMATCHINGPLUGIN_API ShapeMatchingRotationFinder< defaulttype::Vec3dTypes >;
120+
extern template class SOFA_SHAPEMATCHINGPLUGIN_API ShapeMatchingRotationFinder< defaulttype::Vec3Types >;
121121
#endif
122122

123123
} // namespace sofa::component::container

0 commit comments

Comments
 (0)