16
0
mirror of https://github.com/MaSzyna-EU07/maszyna.git synced 2026-07-18 03:09:18 +02:00

files missing from previous commit

fixes
version
This commit is contained in:
tmj-fstate
2018-06-15 18:56:50 +02:00
committed by milek7
parent db58ec131a
commit 8491c63f3c
10 changed files with 41 additions and 41 deletions

View File

@@ -16,23 +16,6 @@ http://mozilla.org/MPL/2.0/.
#include "Track.h"
#include "renderer.h"
//---------------------------------------------------------------------------
// helper, restores content of a 3d vector from provided input stream
// TODO: review and clean up the helper routines, there's likely some redundant ones
Math3D::vector3 LoadPoint( cParser &Input ) {
// pobranie współrzędnych punktu
Input.getTokens( 3 );
Math3D::vector3 point;
Input
>> point.x
>> point.y
>> point.z;
return point;
}
void
segment_data::deserialize( cParser &Input, Math3D::vector3 const &Offset ) {