Skip to content
Snippets Groups Projects
Location.h 345 B
Newer Older
  • Learn to ignore specific revisions
  • Radim Vavřík's avatar
    Radim Vavřík committed
    // Location.h
    
    #ifndef LOCATION_H
    #define LOCATION_H
    
    namespace math1d_cl
    {
    	class Location
    	{
    	public:
    		const float& getX();
    		void setX(const float& x);
    		const float& getY();
    		void setY(const float& y);
    		const float& getZ();
    		void setZ(const float& z);
    
    	private:
    		float m_x;
    		float m_y;
    		float m_z;
    	};
    }
    #endif