From 83757353860fa447c36d4078602efea36d7da94e Mon Sep 17 00:00:00 2001 From: Stijn Buys Date: Tue, 23 Feb 2010 20:30:57 +0000 Subject: renamed model::Parts to model::Tags --- src/model/parts.cc | 119 ----------------------------------------------------- 1 file changed, 119 deletions(-) delete mode 100644 src/model/parts.cc (limited to 'src/model/parts.cc') diff --git a/src/model/parts.cc b/src/model/parts.cc deleted file mode 100644 index e71ad16..0000000 --- a/src/model/parts.cc +++ /dev/null @@ -1,119 +0,0 @@ -/* - model/classes.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/parts.h" - -namespace model -{ - -/* ---- class Light ------------------------------------------------ */ - -Light::Light() : - Part(), - light_color(1.0f, 1.0f, 1.0f) -{ - light_entity = false; - light_engine = false; - light_strobe = false; - - light_radius = 1.0f; - light_frequency = 1.0f; - light_offset = 0.0f; - light_time = 0.5f; - - light_flare = 0; - - light_texture = 0; -} - -Light::Light(const Light& other) : Part(other), - light_color(other.color()) -{ - light_entity = other.entity(); - light_engine = other.engine(); - light_strobe = other.strobe(); - - light_radius = other.radius(); - light_frequency = other.frequency(); - light_offset = other.offset(); - light_time = other.time(); - - light_flare = other.flare(); - - light_texture = other.texture(); -} -Light::~Light() -{} - -/* ---- class Flare ------------------------------------------------ */ - -Flare::Flare() : Light() -{ - flare_cull = CullBack; -} - -Flare::Flare(const Flare& other) : Light(other) -{ - flare_cull = other.cull(); -} - -Flare::~Flare() -{} - -/* ---- class Particles -------------------------------------------- */ - -Particles::Particles() : Part() -{ - particles_entity = false; - particles_engine = false; - particles_radius = 0.0f; - particles_cull = CullNone; -} - -Particles::Particles(const math::Vector3f& location) : - Part(location) -{ -} - -Particles::~Particles() -{ -} - -/* ---- class Dock ------------------------------------------------- */ - -Dock::Dock() : Part() -{ - dock_radius = 0.01f; -} - -Dock::Dock(const Dock& other) : Part(other) -{ - dock_radius = other.radius(); -} - -Dock::~Dock() -{ -} - -/* ---- class SubModel---------------------------------------------- */ - -SubModel::SubModel() : Part() -{ - submodel_scale = 1.0f; -} - -SubModel::SubModel(const SubModel& other) : Part(other), - submodel_name(other.name()), - submodel_axis(other.axis()) -{ - submodel_scale = other.scale(); -} - -SubModel::~SubModel() -{ -} - -} -- cgit v1.2.3