DataStore.NaoWrist.NaoWrist C# (CSharp) Method

NaoWrist() public method

public NaoWrist ( double yaw ) : System
yaw double
return System
        public NaoWrist(double yaw)
        {
            if (Util.isWithinRange(yaw, YAW_MIN, YAW_MAX))
            {
                this.Yaw = yaw;
            }
            else
            {
                throw new ArgumentException(yaw + " is outside of range (" + YAW_MIN + ", " + YAW_MAX + ")");
            }
        }

Same methods

NaoWrist::NaoWrist ( ) : System
NaoWrist::NaoWrist ( SerializationInfo info, StreamingContext ctxt ) : System