Exemplo n.º 1
0
 public void DebugCollect(ShadowEdgeManifold m)
 {
     if (debugEdgeManifoldCollector != null)
     {
         debugEdgeManifoldCollector.Add(m);
     }
 }
Exemplo n.º 2
0
 public void DebugCollect(ShadowEdgeManifold manifold, EdgeMount mount, TwoWayPenFricConstraint.Partial partial)
 {
     if (debugEdgeMounts != null)
     {
         debugEdgeMounts.Add(new EdgeMountTuple {
             m = manifold, mount = mount, partialConstraint = partial
         });
     }
 }
Exemplo n.º 3
0
 public void Deconstruct(out ShadowEdgeManifold m, out EdgeMount mount, out TwoWayPenFricConstraint.Partial partialConstraint)
 {
     m                 = this.m;
     mount             = this.mount;
     partialConstraint = this.partialConstraint;
 }