summaryrefslogtreecommitdiffstats
path: root/source/Vector3f.cpp
blob: 59d71d371bf8af263a3db0b116dc5bf3b525d7ed (plain) (blame)
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
34

#include "Globals.h"  // NOTE: MSVC stupidness requires this to be the same across all modules

#include "Vector3f.h"
#include "Vector3d.h"
#include "Vector3i.h"

Vector3f::Vector3f( const Vector3d & v )
	: x( (float)v.x )
	, y( (float)v.y )
	, z( (float)v.z )
{
}

Vector3f::Vector3f( const Vector3d * v )
	: x( (float)v->x )
	, y( (float)v->y )
	, z( (float)v->z )
{
}

Vector3f::Vector3f( const Vector3i & v )
	: x( (float)v.x )
	, y( (float)v.y )
	, z( (float)v.z )
{
}

Vector3f::Vector3f( const Vector3i * v )
	: x( (float)v->x )
	, y( (float)v->y )
	, z( (float)v->z )
{
}