Exemplo n.º 1
0
        /*
         * Se ha de tener la mano en modo lasso por encima de la cabeza y bajarla
         */
        public DownGesture()
        {
            UpSegment   upSegment   = new UpSegment();
            DownSegment downSegment = new DownSegment();

            _segments = new IGestureSegment[]
            {
                upSegment,
                downSegment
            };
        }
Exemplo n.º 2
0
        // Partimos de la mano en lasso por debajo de la cabeza hacia arriba.
        public UpGesture()
        {
            UpSegment   upSegment   = new UpSegment();
            DownSegment downSegment = new DownSegment();

            _segments = new IGestureSegment[]
            {
                downSegment,
                upSegment
            };
        }