You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
53 lines
1.5 KiB
53 lines
1.5 KiB
//========= Copyright Valve Corporation, All rights reserved. ============// |
|
// |
|
// Purpose: |
|
// |
|
// $NoKeywords: $ |
|
//=============================================================================// |
|
|
|
#include "stdafx.h" |
|
#include "Box3D.h" |
|
#include "MapDefs.h" // for COORD_NOTINIT |
|
#include "MapPoint.h" |
|
#include "hammer_mathlib.h" |
|
|
|
// memdbgon must be the last include file in a .cpp file!!! |
|
#include <tier0/memdbgon.h> |
|
|
|
|
|
//----------------------------------------------------------------------------- |
|
// Purpose: Constructor. Initializes the origin point to all zeros. |
|
//----------------------------------------------------------------------------- |
|
CMapPoint::CMapPoint(void) |
|
{ |
|
m_Origin.Init(); |
|
} |
|
|
|
|
|
//----------------------------------------------------------------------------- |
|
// Purpose: Returns this point's X, Y, Z coordinates. |
|
//----------------------------------------------------------------------------- |
|
void CMapPoint::GetOrigin(Vector &Origin) |
|
{ |
|
Origin = m_Origin; |
|
} |
|
|
|
|
|
//----------------------------------------------------------------------------- |
|
// Purpose: Sets this point's X, Y, Z coordinates. |
|
//----------------------------------------------------------------------------- |
|
void CMapPoint::SetOrigin(Vector &Origin) |
|
{ |
|
m_Origin = Origin; |
|
} |
|
|
|
|
|
//----------------------------------------------------------------------------- |
|
// Purpose: |
|
// Input : pTransBox - |
|
//----------------------------------------------------------------------------- |
|
void CMapPoint::DoTransform(const VMatrix &matrix) |
|
{ |
|
TransformPoint( matrix, m_Origin ); |
|
} |
|
|
|
|