blob: 8a3f37de39f431c0e9a6bb6e7b8a8a5e5dd31348 (
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
|
//========= Copyright Valve Corporation, All rights reserved. ============//
//
// Purpose:
//
// $Workfile: $
// $Date: $
//
//-----------------------------------------------------------------------------
// $Log: $
//
// $NoKeywords: $
//=============================================================================//
#ifndef COLLISIONMODEL_H
#define COLLISIONMODEL_H
#pragma once
extern void Cmd_CollisionText( void );
extern int DoCollisionModel( bool separateJoints );
// execute after simplification, before writing
extern void CollisionModel_Build( void );
// execute during writing
extern void CollisionModel_Write( long checkSum );
void CollisionModel_ExpandBBox( Vector &mins, Vector &maxs );
#endif // COLLISIONMODEL_H
|