예제 #1
0
import sys
sys.path.insert(0, '..')
from Leap import *

from pyGameWindow_Del03 import PYGAME_WINDOW
from constants import CONSTANTS
from Deliverable import DELIVERABLE

myConstants = CONSTANTS()

deliverable = DELIVERABLE(Controller(), PYGAME_WINDOW(),
                          int(myConstants.pygameWindowWidth / 2),
                          int(myConstants.pygameWindowDepth / 2), 1000, -1000,
                          1000, -1000)
deliverable.Run_Forever()
예제 #2
0
파일: Record.py 프로젝트: jgenoves/CS228
from Deliverable import DELIVERABLE


deliverable = DELIVERABLE()
deliverable.Run_Forever()
    


예제 #3
0
from Deliverable import DELIVERABLE

d = DELIVERABLE()
d.Run_Forever()
exit()
예제 #4
0
import numpy
from Deliverable import DELIVERABLE
Deliverable_Instance = DELIVERABLE()
##Deliverable_Instance.Delete_And_Recreate_Gesture_Directory()
Deliverable_Instance.Run_Forever()

예제 #5
0
파일: Record.py 프로젝트: tripp528/cs228
import sys
sys.path.insert(0, "..")
import Leap
import constants

import random
from pygameWindow_Del03 import PYGAME_WINDOW
from Deliverable import DELIVERABLE

deliverable = DELIVERABLE(Leap.Controller(),PYGAME_WINDOW(),400,400,800,-800,800,-800)

deliverable.Run_Forever()
예제 #6
0
##########################################

#import random
from Deliverable import DELIVERABLE

delInstance = DELIVERABLE()
delInstance.Run_Forever()
예제 #7
0
파일: Del03.py 프로젝트: Dilraba0603/CS228
import sys
sys.path.insert(0,'..')
import Leap
from pygameWindow_Del03 import PYGAME_WINDOW 
#from pygameWindow import PYGAME_WINDOW
import random
from constants import pygameWindowWidth, pygameWindowDepth
from Deliverable import DELIVERABLE


Del3=DELIVERABLE()
Del3.Run_Forever()