BEPUphysics.UpdateableSystems.ForceFields.ForceField.ForceField C# (CSharp) 메소드

ForceField() 보호된 메소드

Constructs a force field.
protected ForceField ( BEPUphysics.UpdateableSystems.ForceFields.ForceFieldShape shape ) : System
shape BEPUphysics.UpdateableSystems.ForceFields.ForceFieldShape Shape to use for the force field.
리턴 System
        protected ForceField(ForceFieldShape shape)
        {
            Shape = shape;
            subfunction = new Action<int>(CalculateImpulsesSubfunction);
            AllowMultithreading = true;
        }