blob: eb4198ac2f9fb137ebfecc3671d232770b3645fc (
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
33
|
/*
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()
{}
}
|