mirror of
https://github.com/alliedmodders/hl2sdk.git
synced 2025-09-19 20:16:10 +08:00
First version of the SOurce SDK 2013
This commit is contained in:
51
utils/vrad/origface.cpp
Normal file
51
utils/vrad/origface.cpp
Normal file
@ -0,0 +1,51 @@
|
||||
//========= Copyright Valve Corporation, All rights reserved. ============//
|
||||
//
|
||||
// Purpose:
|
||||
//
|
||||
// $Workfile: $
|
||||
// $Date: $
|
||||
//
|
||||
//-----------------------------------------------------------------------------
|
||||
// $Log: $
|
||||
//
|
||||
// $NoKeywords: $
|
||||
//=============================================================================//
|
||||
|
||||
#include "vrad.h"
|
||||
|
||||
bool bOrigFacesTouched[MAX_MAP_FACES];
|
||||
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
// Pupose: clear (reset) the bOrigFacesTouched list -- parellels the original
|
||||
// face list allowing an original face to only be processed once in
|
||||
// pairing edges!
|
||||
//-----------------------------------------------------------------------------
|
||||
void ResetOrigFacesTouched( void )
|
||||
{
|
||||
for( int i = 0; i < MAX_MAP_FACES; i++ )
|
||||
{
|
||||
bOrigFacesTouched[i] = false;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
// Purpose: mark an original faces as touched (dirty)
|
||||
// Input: index - index of the original face touched
|
||||
//-----------------------------------------------------------------------------
|
||||
void SetOrigFaceTouched( int index )
|
||||
{
|
||||
bOrigFacesTouched[index] = true;
|
||||
}
|
||||
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
// Purpose: return whether or not an original face has been touched
|
||||
// Input: index - index of the original face touched
|
||||
// Output: true/false
|
||||
//-----------------------------------------------------------------------------
|
||||
bool IsOrigFaceTouched( int index )
|
||||
{
|
||||
return bOrigFacesTouched[index];
|
||||
}
|
Reference in New Issue
Block a user