forked from sam-vdp/bepuphysics1int
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDragControl.cs
77 lines (67 loc) · 1.96 KB
/
DragControl.cs
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
using FixMath.NET;
using BEPUutilities;
namespace BEPUik
{
/// <summary>
/// Constrains an individual bone in an attempt to reach some position goal.
/// </summary>
public class DragControl : Control
{
/// <summary>
/// Gets or sets the controlled bone.
/// </summary>
public override Bone TargetBone
{
get { return LinearMotor.TargetBone; }
set
{
LinearMotor.TargetBone = value;
}
}
/// <summary>
/// Gets or sets the linear motor used by the control.
/// </summary>
public SingleBoneLinearMotor LinearMotor
{
get;
private set;
}
public DragControl()
{
LinearMotor = new SingleBoneLinearMotor();
LinearMotor.Rigidity = F64.C1;
}
protected internal override void Preupdate(Fix64 dt, Fix64 updateRate)
{
LinearMotor.Preupdate(dt, updateRate);
}
protected internal override void UpdateJacobiansAndVelocityBias()
{
LinearMotor.UpdateJacobiansAndVelocityBias();
}
protected internal override void ComputeEffectiveMass()
{
LinearMotor.ComputeEffectiveMass();
}
protected internal override void WarmStart()
{
LinearMotor.WarmStart();
}
protected internal override void SolveVelocityIteration()
{
LinearMotor.SolveVelocityIteration();
}
protected internal override void ClearAccumulatedImpulses()
{
LinearMotor.ClearAccumulatedImpulses();
}
public override Fix64 MaximumForce
{
get { return LinearMotor.MaximumForce; }
set
{
LinearMotor.MaximumForce = value;
}
}
}
}