Ejemplo n.º 1
0
        public void Extend(int extends)
        {
            foreach (var bone in Joints)
            {
                bone.Move(extends);
            }

            // Retreive the connection string from options to connect with Arm.
            var connectionString = options.ConnectionString;

            Arm arm = new Arm();
            arm.ConnectionString = connectionString;
            arm.Connect(this);
        }
Ejemplo n.º 2
0
        public void Extend(int extends)
        {
            foreach (var bone in Joints)
            {
                bone.Move(extends);
            }

            // Retreive the connection string from options to connect with Arm.
            var connectionString = options.ConnectionString;

            Arm arm = new Arm();

            arm.ConnectionString = connectionString;
            arm.Connect(this);
        }