| 周次 | 日期 | 課程進度與內容 | 作業公告,參考資訊連結 |
| 01 | 2012/02/20 |
| |
| 02 | 2011/03/03 星期六 |
| |
| 03 | 2011/03/05 |
| - |
| 04 | 2011/03/12 |
| - |
| 05 | 2011/03/19 |
| -程式作業1繳交截止日 |
| 06 | 011/03/26 |
| - |
| 07 | 2011/04/02 |
| - |
| 08 | 2011/04/09 |
| - |
| 09 | 2011/04/16 | 期中考 | - |
| 10 | 011/04/23 |
| |
| 11 | 2011/04/30 |
| 程式作業2繳交截止日 優選作業 |
| 12 | 2011/05/07 |
| |
| 13 | 2011/05/14 |
| - |
| 14 | 2011/05/21 |
| 程式作業3繳交截止日 |
| 15 | 2011/05/28 |
| - |
| 16 | 2011/06/04 |
| -程式作業4繳交截止日 |
| 17 | 2011/06/11 |
| |
| 18 | 2011/06/18 | 期末考 | -程式作業5繳交截止日 |
YZUCS314 計算機圖學概論
2012年2月29日 星期三
1002 CS314計算機圖學概論課程資訊與公告
2011年2月26日 星期六
圖學相關會議、期刊、與研究機構
會議(組織)
- ACM SIGGRAPH (Association For Computing Machinery's Special Interest On Computer Graphics)
- Eurographics (European Association For Computer Graphics)
期刊
- ACM Transactions On Computer Graphics
- Computers & Graphics
- IEEE Transactions On Visualization and Computer Graphics
- IEEE Computer Graphics and Applications
- Journal of graphics, gpu, & game tools
- The Visual Computer
研究機構
2011年2月25日 星期五
圖學相關概念、知識、與展示連結
- Computer Graphics (Wikipedia)
- What is Computer Graphics? (Cornell University)
- Pixar 20 Years of Animation (皮克斯動畫20年)
- 3D Computer Graphics Software
- File Format for 3D Graphics
2010年9月26日 星期日
Dev C++ 4.9.9.2使用glut
1.在Dev C++ 4.9.9.2選單[tools][Check for Updates/Packages]檢查更新,找到一項名為「glut」,版本為「3.7.6+」,點選它之後按下[OK]。
2. 然後開新專案,在選擇專案視窗的最上方有三個頁籤,其中一項為「multimedia」,選它後,會發現有兩個專案類型可選。一個是安裝Dev C++ 4.9.9.2時就有的類型「OpenGL」,另一個就是「glut」,也就是更新後才會建立起來的類型。
4. 用glut建立的專案,程式就可以用glut函式了。
2. 然後開新專案,在選擇專案視窗的最上方有三個頁籤,其中一項為「multimedia」,選它後,會發現有兩個專案類型可選。一個是安裝Dev C++ 4.9.9.2時就有的類型「OpenGL」,另一個就是「glut」,也就是更新後才會建立起來的類型。
4. 用glut建立的專案,程式就可以用glut函式了。
在VC++ 6.0 使用 glut
1. 將 glut32.lib 複製到 Microsoft Visual Studio\VC98\lib
2. 將 glut.h 複製到 Microsoft Visual Studio\VC98\Include\GL
3. 將 glut32.dll 複製到 Windows\system32
使用靜態連結的設定方法:
a) 選擇 Project/Settings 新增library: opengl32.lib
b) 在程式內打 #pragma comment (lib, "glut32.lib")
2. 將 glut.h 複製到 Microsoft Visual Studio\VC98\Include\GL
3. 將 glut32.dll 複製到 Windows\system32
使用靜態連結的設定方法:
a) 選擇 Project/Settings 新增library: opengl32.lib
b) 在程式內打 #pragma comment (lib, "glut32.lib")
訂閱:
意見 (Atom)