blob: 7c8d1174282d0d06464b532bd311b99c35b698bd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
/*
model/engine.cc
This file is part of the Osirion project and is distributed under
the terms of the GNU General Public License version 2
*/
#include "model/engine.h"
namespace model {
/* ---------- core::Engine ------------------------------------------ */
Engine::Engine() :
engine_location()
{
engine_radius = 1.0f;
engine_flare = 0;
engine_color.assign(1.0f, 0.0f, 0.0f , 1.0f);
}
Engine::Engine(math::Vector3f const & location) :
engine_location(location)
{
engine_radius = 1.0f;
}
Engine::~Engine()
{}
}
|