Skip to content
Snippets Groups Projects
Location.cpp 418 B
Newer Older
  • Learn to ignore specific revisions
  • Radim Vavřík's avatar
    Radim Vavřík committed
    // 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;
    	}
    }