blob: acf2625e4ae825a2229b82cafb472884a7efef39 (
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
|
//========= Copyright Valve Corporation, All rights reserved. ============//
//
// Purpose:
//
// $Workfile: $
// $Date: $
//
//-----------------------------------------------------------------------------
// $Log: $
//
// $NoKeywords: $
//=============================================================================//
#ifndef SIMPLIFY_H
#define SIMPLIFY_H
#pragma once
struct simplifyparams_t
{
float tolerance;
bool addAABBToSimplifiedHull;
bool forceSingleConvex;
bool mergeConvexElements;
float mergeConvexTolerance;
void Defaults()
{
tolerance = 1.0f;
addAABBToSimplifiedHull = false;
forceSingleConvex = false;
mergeConvexElements = false;
mergeConvexTolerance = 0.f;
}
};
extern CPhysCollide *SimplifyCollide( CPhysCollide *pCollideIn, int index, const simplifyparams_t ¶ms );
#endif // SIMPLIFY_H
|