Remove some useless "Nz::" (#159)

* Remove useless "Nz::"

* Remove useless "Nz::"

* REmove useless "Nz::"

* Remove useless "Nz::"
This commit is contained in:
Faymoon
2018-02-17 12:47:16 +01:00
committed by Jérôme Leclercq
parent af12c5ed92
commit cd526d6145
4 changed files with 19 additions and 19 deletions

View File

@@ -266,7 +266,7 @@ namespace Nz
return NewtonBodyGetSleepState(m_body) != 0;
}
void RigidBody3D::SetAngularDamping(const Nz::Vector3f& angularDamping)
void RigidBody3D::SetAngularDamping(const Vector3f& angularDamping)
{
NewtonBodySetAngularDamping(m_body, angularDamping);
}
@@ -345,7 +345,7 @@ namespace Nz
NewtonBodySetCentreOfMass(m_body, center);
}
void RigidBody3D::SetMaterial(const Nz::String& materialName)
void RigidBody3D::SetMaterial(const String& materialName)
{
SetMaterial(m_world->GetMaterial(materialName));
}