예제 #1
0
        public override string ToString()
        {
            var result = string.Format("align your {0} and your {1}",
                                       JointTypeHelper.JointToString(this.JointType1),
                                       JointTypeHelper.JointToString(this.JointType2));

            if (this.isNegated)
            {
                result = "don't " + result;
            }

            return(result);
        }
예제 #2
0
        public override string ToString()
        {
            var result = string.Format("touch your {0} with your {1} hand",
                                       JointTypeHelper.JointToString(this.JointType),
                                       EnumUtil.GetDescription <JointSide>(this.HandSide).ToLower());

            if (this.isNegated)
            {
                result = "don't " + result;
            }

            return(result);
        }
예제 #3
0
        public override string ToString()
        {
            var result = string.Format("put your {0} {1} {2}",
                                       JointTypeHelper.JointToString(this.JointType1),
                                       EnumUtil.GetDescription <RelativeDirection>(this.Direction).ToLower(),
                                       JointTypeHelper.JointToString(this.JointType2));

            if (this.isNegated)
            {
                result = "don't " + result;
            }

            return(result);
        }
예제 #4
0
 public override string ToString()
 {
     return(string.Format("rotate your {0} {1} degrees {2}",
                          JointTypeHelper.JointToString(this.JointType), this.Degrees,
                          EnumUtil.GetDescription <Direction>(this.Direction).ToLower()));
 }