/* NAME: Kirill Vasil'evich Timofeev, 322
 * ASGN: N1
 */

#include "Thor.h"


Thor::Thor(){}
Thor::~Thor(){}

void Thor::SetPosCen(const Vector3D Pos)
{
    PosCen = Pos;
}

void Thor::SetWid(const float Wid)
{
    Width = Wid;
}

void Thor::SetRad(const float Rad)
{
    Radius = Rad;
}

void Thor::SetMater(Mater Mat)
{
    Material = Mat;
}

Vector3D Thor::GetPosCen()
{
    return PosCen;
}

float Thor::GetWid()
{
    return Width;
}

float Thor::GetRad()
{
    return Radius;
}

Mater Thor::GetMater()
{
    return Material;
}


