diff options
author | chai <chaifix@163.com> | 2021-12-02 14:44:36 +0800 |
---|---|---|
committer | chai <chaifix@163.com> | 2021-12-02 14:44:36 +0800 |
commit | fdd228071a3112aeebda20766c7df3b20b8651aa (patch) | |
tree | edc6e05bda6c537582235dbe110e3ed783e0e36a /Client/Source/Phy2D/Dynamic/Joint.h | |
parent | b1d4e9866de19c70174553e543e81ef4473dee6c (diff) |
+Fix32
Diffstat (limited to 'Client/Source/Phy2D/Dynamic/Joint.h')
-rw-r--r-- | Client/Source/Phy2D/Dynamic/Joint.h | 34 |
1 files changed, 0 insertions, 34 deletions
diff --git a/Client/Source/Phy2D/Dynamic/Joint.h b/Client/Source/Phy2D/Dynamic/Joint.h deleted file mode 100644 index ee08b40..0000000 --- a/Client/Source/Phy2D/Dynamic/Joint.h +++ /dev/null @@ -1,34 +0,0 @@ -#pragma once
-
-#include "../Common/Math.h"
- -namespace Phy2D -{ - - struct Body; - - struct Joint - { - Joint() : - body1(0), body2(0), - P(0.0f, 0.0f), - biasFactor(0.2f), softness(0.0f) - {} - - void Set(Body* body1, Body* body2, const Vec2& anchor); - - void PreStep(number inv_dt); - void ApplyImpulse(); - - Mat22 M; - Vec2 localAnchor1, localAnchor2; - Vec2 r1, r2; - Vec2 bias; - Vec2 P; // accumulated impulse - Body* body1; - Body* body2; - number biasFactor; - number softness; - }; - -}
|