|
Generated by diff2html.pl © Yves Bailly, MandrakeSoft S.A. 2001, Ryohei Morita 2007 diff2html.pl is licensed under the GNU GPL. |
../07-03/07-03-MainFunction.c | 07-05-MainFunction.c | |||
---|---|---|---|---|
34 lines 977 bytes Last modified : Mon Nov 5 12:07:58 2012 |
36 lines 1008 bytes Last modified : Mon Nov 5 13:24:55 2012 |
|||
1 | // Keisanki Joron 2 (Introduction to Computing II) | 1 | // Keisanki Joron 2 (Introduction to Computing II) | |
2 | // Dept. of Engineering Systems, University of Tsukuba | 2 | // Dept. of Engineering Systems, University of Tsukuba | |
3 | // [UTF-8 / Unix] | 3 | // [UTF-8 / Unix] | |
4 | // 計算機序論2・実習 (筑波大学工学システム学類) | 4 | // 計算機序論2・実習 (筑波大学工学システム学類) | |
5 | 5 | |||
6 | // 2012/11/05a kameda[at]iit.tsukuba.ac.jp | 6 | // 2012/11/05a kameda[at]iit.tsukuba.ac.jp | |
7 | // 07.03. ファイル分割に伴う修正 | 7 | // 07.05. イベントの追加(ロゴの拡大縮小) | |
8 | 8 | |||
9 | #include "ic2-CommonHeaders.h" | 9 | #include "ic2-CommonHeaders.h" | |
10 | 10 | |||
11 | 11 | |||
12 | // *********************************************************************** | 12 | // *********************************************************************** | |
13 | // MainFunction ********************************************************** | 13 | // MainFunction ********************************************************** | |
14 | 14 | |||
15 | // +---------------------------------------------------- | 15 | // +---------------------------------------------------- | |
16 | // メイン関数など | 16 | // 大域変数 | |
17 | // +---------------------------------------------------- | 17 | // +---------------------------------------------------- | |
18 | 18 | |||
19 | float logoscale = 0.95; | |||
20 | ||||
19 | // +---------------------------------------------------- | 21 | // +---------------------------------------------------- | |
20 | // Main Function | 22 | // Main Function | |
21 | // +---------------------------------------------------- | 23 | // +---------------------------------------------------- | |
22 | int main (int argc, char *argv[]) { | 24 | int main (int argc, char *argv[]) { | |
23 | 25 | |||
24 | // glutライブラリによる引数の解釈 | 26 | // glutライブラリによる引数の解釈 | |
25 | glutInit(&argc, argv); | 27 | glutInit(&argc, argv); | |
26 | 28 | |||
27 | // OpenGL Window の初期化 | 29 | // OpenGL Window の初期化 | |
28 | ic2_BootWindow(argv[0]); | 30 | ic2_BootWindow(argv[0]); | |
29 | 31 | |||
30 | // 無限ループの開始 | 32 | // 無限ループの開始 | |
31 | glutMainLoop(); | 33 | glutMainLoop(); | |
32 | 34 | |||
33 | return 0; | 35 | return 0; | |
34 | } | 36 | } |