Gl Graph

Gl Graph Source of glcoordinatesystem.cpp


#include <glcoordinatesystem.h>
 
void GlCoordinateSystem::setCoordinateSystem(GlCoordinateSystem &sys)
{
    position = sys.position;
    x = sys.getX();
    y = sys.getY();
    z = sys.getZ();
}
 
Vec3f GlCoordinateSystem::getPosition()
{
    return position;
}
 
void GlCoordinateSystem::setPosition(Vec3f &p)
{
    position = p;
}
 
void GlCoordinateSystem::setPosition(Vec3f &&p)
{
    position = p;
}
 
void GlCoordinateSystem::setX(Vec3f &v)
{
    x = v;
}
 
void GlCoordinateSystem::setY(Vec3f &v)
{
    y = v;
}
 
void GlCoordinateSystem::setZ(Vec3f &v)
{
    z = v;
}
 
void GlCoordinateSystem::setX(Vec3f &&v)
{
    x = v;
}
 
void GlCoordinateSystem::setY(Vec3f &&v)
{
    y = v;
}
 
void GlCoordinateSystem::setZ(Vec3f &&v)
{
    z = v;
}
 
 
Vec3f GlCoordinateSystem::getX()
{
    return x;
}
 
Vec3f GlCoordinateSystem::getY()
{
    return y;
}
 
Vec3f GlCoordinateSystem::getZ()
{
    return z;
}