示例#1
0
 public Simulation(SoftBodyControl control)
 {
     this.control          = control;
     integrator            = new ForwardEulerIntegrator(control);
     simObjects            = new List <List <SimMass> >();
     globalForceGenerators = new List <ForceGenerator>();
     springList            = new List <List <Spring> >();
     constraintsList       = new List <List <LengthConstraint> >();
 }
示例#2
0
 public ForwardEulerIntegrator(SoftBodyControl control)
     : base(control)
 {
 }