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.
20 lines
464 B
20 lines
464 B
//========= Copyright Valve Corporation, All rights reserved. ============// |
|
// |
|
// Purpose: |
|
// |
|
// $NoKeywords: $ |
|
//=============================================================================// |
|
|
|
#ifndef FACES_H |
|
#define FACES_H |
|
#ifdef _WIN32 |
|
#pragma once |
|
#endif |
|
|
|
|
|
void GetEdge2_InitOptimizedList(); // Call this before calling GetEdge2() on a bunch of edges. |
|
int AddEdge( int v1, int v2, face_t *f ); |
|
int GetEdge2(int v1, int v2, face_t *f); |
|
|
|
|
|
#endif // FACES_H
|
|
|