Skip to content

Commit 6f4d1cc

Browse files
committed
[src] Change namespace to lowercase for repository
1 parent 0807457 commit 6f4d1cc

38 files changed

+56
-56
lines changed

src/ConstraintGeometry/BaseConstraint.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
#include <ConstraintGeometry/ConstraintResponse.h>
1010
#include <ConstraintGeometry/ConstraintDirection.h>
1111

12-
namespace sofa::constraintGeometry {
12+
namespace sofa::constraintgeometry {
1313

1414

1515
class BaseConstraint : public sofa::core::behavior::BaseLagrangianConstraint{

src/ConstraintGeometry/BaseNormalHandler.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
#include <ConstraintGeometry/operations/ConstraintProximityOperation.h>
88
#include <CollisionAlgorithm/operations/CreateCenterProximity.h>
99

10-
namespace sofa ::constraintGeometry {
10+
namespace sofa ::constraintgeometry {
1111

1212
/*!
1313
* \brief The BaseConstraint abstract class is the implementation of sofa's abstract BaseConstraint

src/ConstraintGeometry/ConstraintDirection.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
#include <ConstraintGeometry/ConstraintNormal.h>
77
#include <ConstraintGeometry/InternalConstraint.h>
88

9-
namespace sofa::constraintGeometry {
9+
namespace sofa::constraintgeometry {
1010

1111
/*!
1212
* \brief The BaseConstraint abstract class is the implementation of sofa's abstract BaseLagrangianConstraint

src/ConstraintGeometry/ConstraintNormal.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
#include <sofa/defaulttype/VecTypes.h>
55
#include <CollisionAlgorithm/BaseAlgorithm.h>
66

7-
namespace sofa::constraintGeometry {
7+
namespace sofa::constraintgeometry {
88

99
/*!
1010
* \brief The ConstraintNormal class

src/ConstraintGeometry/ConstraintProximity.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#include <CollisionAlgorithm/BaseProximity.h>
44
#include <memory>
55

6-
namespace sofa::constraintGeometry {
6+
namespace sofa::constraintgeometry {
77

88
class ConstraintProximity : public virtual collisionalgorithm::BaseBaseProximity {
99
public:
@@ -66,7 +66,7 @@ class TConstraintProximity : public ConstraintProximity {
6666
};
6767

6868
template<class PROXIMITY>
69-
class BaseProximityNormal : public PROXIMITY, public constraintGeometry::ConstraintProximity {
69+
class BaseProximityNormal : public PROXIMITY, public constraintgeometry::ConstraintProximity {
7070
public:
7171
typedef std::shared_ptr<BaseProximityNormal> SPtr;
7272

src/ConstraintGeometry/ConstraintResponse.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
namespace sofa {
1010

11-
namespace constraintGeometry {
11+
namespace constraintgeometry {
1212

1313
/*!
1414
* \brief The BaseConstraint abstract class is the implementation of sofa's abstract BaseLagrangianConstraint

src/ConstraintGeometry/InternalConstraint.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
#include <sofa/type/vector.h>
77

88

9-
namespace sofa::constraintGeometry {
9+
namespace sofa::constraintgeometry {
1010

1111
class BaseInternalConstraint {
1212
public:
@@ -267,12 +267,12 @@ public :
267267
m_normalFunc = c.m_normalFunc;
268268
}
269269

270-
friend inline std::istream& operator >> ( std::istream& in, std::vector<typename sofa::constraintGeometry::InternalConstraint<FIRST,SECOND>::SPtr> &) {
270+
friend inline std::istream& operator >> ( std::istream& in, std::vector<typename sofa::constraintgeometry::InternalConstraint<FIRST,SECOND>::SPtr> &) {
271271
return in;
272272
}
273273

274274

275-
friend inline std::ostream& operator << (std::ostream& out, const std::vector<typename sofa::constraintGeometry::InternalConstraint<FIRST,SECOND>::SPtr> & v) {
275+
friend inline std::ostream& operator << (std::ostream& out, const std::vector<typename sofa::constraintgeometry::InternalConstraint<FIRST,SECOND>::SPtr> & v) {
276276
for (unsigned i=0;i<v.size();i++) {
277277
if (v.size()>1) out << "[";
278278
v[i]->toString(out);

src/ConstraintGeometry/constraint/BilateralResolution.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
namespace sofa {
88

9-
namespace constraintGeometry {
9+
namespace constraintgeometry {
1010

1111
class BilateralConstraintResolution1 : public sofa::core::behavior::ConstraintResolution {
1212
public:
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
#include <ConstraintGeometry/constraint/ConstraintBilateral.h>
22
#include <sofa/core/ObjectFactory.h>
33

4-
namespace sofa::constraintGeometry
4+
namespace sofa::constraintgeometry
55
{
66
void registerConstraintBilateral(sofa::core::ObjectFactory* factory)
77
{
88
factory->registerObjects(
99
sofa::core::ObjectRegistrationData("Implements bilateral constraints between an origin and a destination geometry")
1010
.add<ConstraintBilateral>());
1111
}
12-
} // namespace sofa::constraintGeometry
12+
} // namespace sofa::constraintgeometry

src/ConstraintGeometry/constraint/ConstraintBilateral.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
#include <ConstraintGeometry/directions/BindDirection.h>
55
#include <ConstraintGeometry/constraint/BilateralResolution.h>
66

7-
namespace sofa::constraintGeometry {
7+
namespace sofa::constraintgeometry {
88

99
class ConstraintBilateral : public TBaseConstraint<collisionalgorithm::BaseProximity,collisionalgorithm::BaseProximity> {
1010
public:

0 commit comments

Comments
 (0)