Newer
Older
// Location.cpp
#include "Location.h"
namespace math1d_cl
{
const float& Location::getX()
{
return m_x;
}
void Location::setX(const float& x)
{
m_x = x;
}
const float& Location::getY()
{
return m_y;
}
void Location::setY(const float& y)
{
m_y = y;
}
const float& Location::getZ()
{
return m_z;
}
void Location::setZ(const float& z)
{
m_z = z;
}
}