forked from hitmen047/Source-PlusPlus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfriction.h
51 lines (39 loc) · 1.5 KB
/
friction.h
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
39
40
41
42
43
44
45
46
47
48
49
50
51
//========= Copyright Valve Corporation, All rights reserved. ============//
//
// Purpose:
//
//=============================================================================//
#ifndef FRICTION_H
#define FRICTION_H
#ifdef _WIN32
#pragma once
#endif
// NOTE: This is an iterator for the contact points on an object
// NOTE: This should only be used temporarily. Holding one of these
// NOTE: across collision callbacks or calls into simulation will cause errors!
// NOTE: VPHYSICS may choose to make the data contained within this object invalid
// NOTE: any time simulation is run.
class IPhysicsFrictionSnapshot
{
public:
virtual ~IPhysicsFrictionSnapshot() {}
virtual bool IsValid() = 0;
// Object 0 is this object, Object 1 is the other object
virtual IPhysicsObject *GetObject( int index ) = 0;
virtual int GetMaterial( int index ) = 0;
virtual void GetContactPoint( Vector &out ) = 0;
// points away from source object
virtual void GetSurfaceNormal( Vector &out ) = 0;
virtual float GetNormalForce() = 0;
virtual float GetEnergyAbsorbed() = 0;
// recompute friction (useful if dynamically altering materials/mass)
virtual void RecomputeFriction() = 0;
// clear all friction force at this contact point
virtual void ClearFrictionForce() = 0;
virtual void MarkContactForDelete() = 0;
virtual void DeleteAllMarkedContacts( bool wakeObjects ) = 0;
// Move to the next friction data for this object
virtual void NextFrictionData() = 0;
virtual float GetFrictionCoefficient() = 0;
};
#endif // FRICTION_H