lib/ai: fix typo in doc
[nit.git] / contrib / inkscape_tools / tests / app / src / s2pn.nit
1 # This file is part of NIT ( http://www.nitlanguage.org ).
2 #
3 # Copyright 2013 Alexis Laferrière <alexis.laf@xymus.net>
4 #
5 # Licensed under the Apache License, Version 2.0 (the "License");
6 # you may not use this file except in compliance with the License.
7 # You may obtain a copy of the License at
8 #
9 # http://www.apache.org/licenses/LICENSE-2.0
10 #
11 # Unless required by applicable law or agreed to in writing, software
12 # distributed under the License is distributed on an "AS IS" BASIS,
13 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 # See the License for the specific language governing permissions and
15 # limitations under the License.
16
17 import drawing
18
19 class S2pnApp
20 super App
21
22 var img_set: DrawingImages
23
24 init do super
25
26 redef fun init_window
27 do
28 super
29
30 img_set = new DrawingImages
31 img_set.load_all(self)
32 end
33
34 redef fun frame_core( display )
35 do
36 display.clear(0.2, 0.2, 0.2)
37
38 display.blit(img_set.square, 0, 0 )
39 display.blit(img_set.circle, 100, 100 )
40 display.blit(img_set.circles[0], 0, 100 )
41 display.blit(img_set.circles[1], 0, 200 )
42 display.blit(img_set.circles[2], 0, 300 )
43 end
44
45 redef fun input( ie )
46 do
47 if ie isa QuitEvent then
48 quit = true
49 return true
50 end
51
52 return false
53 end
54 end
55
56 var app = new S2pnApp
57 app.main_loop