blob: 07a11ea6f42d74fba0ecab9662f7ffda8315fb17 (
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
35
36
37
38
39
|
//========= Copyright Valve Corporation, All rights reserved. ============//
//
// Purpose:
//
// $NoKeywords: $
//=============================================================================//
#include "stdafx.h"
#include "Axes2.h"
#include "mathlib/vector.h"
// memdbgon must be the last include file in a .cpp file!!!
#include "tier0/memdbgon.h"
void Axes2::SetAxes(int h, bool bInvertH, int v, bool bInvertV)
{
bInvertHorz = bInvertH;
bInvertVert = bInvertV;
axHorz = h;
axVert = v;
if(h != AXIS_X && v != AXIS_X)
axThird = AXIS_X;
if(h != AXIS_Y && v != AXIS_Y)
axThird = AXIS_Y;
if(h != AXIS_Z && v != AXIS_Z)
axThird = AXIS_Z;
}
void Axes2::SetAxes(Axes2 &axes)
{
*this = axes;
}
|