Animatroller.Framework.LogicalDevice.MotorWithFeedback.MotorVector.MotorVector C# (CSharp) Method

MotorVector() public method

public MotorVector ( double speed, int target, System.TimeSpan timeout ) : System
speed double
target int
timeout System.TimeSpan
return System
            public MotorVector(double speed, int target, TimeSpan timeout)
            {
                this.Speed = speed.Limit(-1, 1);
                this.Target = target;
                this.Timeout = timeout;
            }
MotorWithFeedback.MotorVector