X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2F3d%2Ftracktype.h;h=7bf1b2d5b9241ab931afefe140ec242366afa6e1;hb=1ff06c5bc46a677fa389ef86c6b26664368f1653;hp=ab85d49ce88f1ba30bfe02d2975c917de65ad37d;hpb=47341c72a70e6cf9d8e963705a50197bbc20a87d;p=r2c2.git diff --git a/source/3d/tracktype.h b/source/3d/tracktype.h index ab85d49..7bf1b2d 100644 --- a/source/3d/tracktype.h +++ b/source/3d/tracktype.h @@ -1,20 +1,20 @@ /* $Id$ -This file is part of the MSP Märklin suite +This file is part of R²C² Copyright © 2010 Mikkosoft Productions, Mikko Rasa Distributed under the GPL */ -#ifndef MARKLIN3D_TRACKTYPE_H_ -#define MARKLIN3D_TRACKTYPE_H_ +#ifndef R2C2_3D_TRACKTYPE_H_ +#define R2C2_3D_TRACKTYPE_H_ #include #include #include -#include "libmarklin/profile.h" -#include "libmarklin/tracktype.h" +#include "libr2c2/profile.h" +#include "libr2c2/tracktype.h" -namespace Marklin { +namespace R2C2 { class Catalogue3D; @@ -24,22 +24,24 @@ private: const Catalogue3D &catalogue; Msp::GL::Mesh ballast_mesh; Msp::GL::Mesh rail_mesh; + std::vector path_meshes; std::vector border; float min_z; float max_z; public: TrackType3D(const Catalogue3D &, const TrackType &); + ~TrackType3D(); void get_bounds(float, Point &, Point &) const; + const Msp::GL::Mesh &get_path_mesh(unsigned) const; virtual void render(const Msp::GL::Tag &) const; private: void build_part(const TrackPart &, const Profile &, const Point &, Msp::GL::MeshBuilder &, unsigned &); - //void optimize_border(); }; -} // namespace Marklin +} // namespace R2C2 #endif