photon rename
This commit is contained in:
parent
92db17a3ed
commit
cc16beb8b0
@ -1,6 +1,6 @@
|
|||||||
from csdl import init, InitFlags
|
from photon import init, InitFlags
|
||||||
from csdl.video import Window
|
from photon.video import Window
|
||||||
from csdl.events import EventType, poll_event, WindowEventType
|
from photon.events import EventType, poll_event, WindowEventType
|
||||||
import time
|
import time
|
||||||
|
|
||||||
def simple_timed_loop(draw_func):
|
def simple_timed_loop(draw_func):
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
#!/usr/bin/env python
|
#!/usr/bin/env python
|
||||||
import random
|
import random
|
||||||
from csdl.video import Rect
|
from photon.video import Rect
|
||||||
from demo_utils import simple_timed_loop
|
from demo_utils import simple_timed_loop
|
||||||
|
|
||||||
def draw(window):
|
def draw(window):
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
from __future__ import print_function
|
from __future__ import print_function
|
||||||
from csdl import sysinfo
|
from photon import sysinfo
|
||||||
|
|
||||||
def main():
|
def main():
|
||||||
print('Platform:', sysinfo.get_platform())
|
print('Platform:', sysinfo.get_platform())
|
||||||
|
@ -1 +1 @@
|
|||||||
nosetests --cover-html --with-coverage --cover-package=csdl --cover-inclusive -v -s
|
nosetests --cover-html --with-coverage --cover-package=photon --cover-inclusive -v -s
|
||||||
|
Loading…
Reference in New Issue
Block a user