Computer Graphics with OpenGL 교재 : [1] OPENGL 을 이용한 컴퓨터 그래픽스 5 판, 번역서, Edward Angel 저, 구자영 등역, 사이텍미디어, 2009 참고서적 : [1] Computer Graphics with OpenGL, Donald.

Slides:



Advertisements
Similar presentations
Computer Graphics Scan Conversion Polygon Faculty of Physical and Basic Education Computer Science Dep Lecturer: Azhee W. MD.
Advertisements

CP411 Computer Graphics, Wilfrid Laurier University Introduction # 1 Welcome to CP411 Computer Graphics 2012 Instructor: Dr. Hongbing Fan Introduction.
Computer Graphics and Animation (AT70.09) Comp. Sc. and Inf. Mgmt. Asian Institute of Technology.
Chapter 2 Using OpenGL Chih-Kuo Yeh.  Addison Wesley OpenGL SuperBible 4 th Edition Jun 2007 Author: Richard S. Wright, Jr. Benjamin Lipchak Nicholas.
CMPE 466 COMPUTER GRAPHICS
CMPE 466 COMPUTER GRAPHICS
What is ? Open Graphics Library A cross-language, multi-platform API for rendering 2D and 3D computer graphics. The API is used to interact with a Graphics.
電腦圖學 Computer Graphics. 課程大綱 教科書 Hong Zhang and Y. Daniel Liang, “Computer Graphics Using Java 2D and 3D,” Pearson Prentice Hall, 2007 ( 全華代理 ) 參考書 1.OpenGL.
Advanced Computer Graphics Spring-2011 Kocaeli University Computer Engineering Department.
C O M P U T E R G R A P H I C S Jie chen Computer graphic -- OpenGL Howto.
COMPUTER GRAPHICS Hochiminh city University of Technology Faculty of Computer Science and Engineering CHAPTER 0: Introduction.
OpenGl Graphics Programming. Introduction OpenGL is a low-level graphics library specification. It makes available to the programmer a small set of geomteric.
Install and Setup VC++ and OpenGL Introduction to Computer Graphics and Animation (Principle of Computer Graphics) Rattapoom Waranusast.
1 Angel: Interactive Computer Graphics 4E © Addison-Wesley 2005 Programming with OpenGL Part 1: Background Ed Angel Professor of Computer Science, Electrical.
CS 450: COMPUTER GRAPHICS INSTALLING GLUT AND GLEW SPRING 2015 DR. MICHAEL J. REALE.
Computer Graphics Kocaeli University Computer Engineering Department Spring 2012.
Introduction to Computer Graphics Dr.Giorgos A. Demetriou Dr. Stephania Loizidou Himona Computer Science Department Frederick University.
Introduction to GL Geb Thomas. Example Code int main(int argc, char **argv) { glutInit(&argc, argv); glutInitDisplayMode ( GLUT_SINGLE | GLUT_RGB | GLUT_DEPTH);
Computer Graphics NV1 (1DT383) Computer Graphics (1TT180) Cary Laxer, Ph.D. Visiting Lecturer.
Chun-Yuan Lin Introduction to Computer Graphics 2015/11/11 1 Ch00.
Computer Graphics with OpenGL
ARToolKit Settings The department of Computer Engineering Shin ho hwan.
Advanced Computer Graphics
Three-Dimensional Viewing Hearn & Baker Chapter 7
Computer Graphics 한신대학교 컴퓨터공학부 류승택 2012 년 2 학기. 강의 소개 담당교수 : 류승택 (60 주년 기념관 18407) 대상 : 한신대학교 컴퓨터공학부 3 학년 기간 : ~ 시간 : 매주 목 4-6 교시 (18309)
CS 470 Computer Graphic Getting Started with OpenGL.
Gianfranco Doretto April 19, CS 174 Discussion 2 TA Gianfranco Doretto.
Computer Graphics Lab 1 OpenGL.
1 How to Install OpenGL u Software running under Microsoft Windows makes extensive use of "dynamic link libraries." A dynamic link library (DLL) is a set.
CS 490 GRAPHICS COMPUTER Lecture 1: Introduction Computer Science Department 1.
Introduction to OpenGL & HW1 Announcement 劉軒銘, 網媒所 碩二 ICG 2012 Fall.
게임 프로그래밍 특론 Advanced Game Programming 한신대학교 대학원 컴퓨터정보학과 류승택 Spring.
3D Graphics 수 5 교시 (IT105), 금 2-3 교시 (IT214) 담당교수 : 이명원 강의노트 : vrlab.suwon.ac.kr/mwlee 강의내용 : Web3D 개념과 사용방법.
게임 프로그래밍 특론 Advanced Game Programming 한신대학교 대학원 컴퓨터공학과 류승택 Spring.
통신 이론 (Communication Theory) Sejong University Hyoung-Kyu Song Tel.) , )
Computer Graphics Sai-Keung Wong ( 黃世強 ) National Chiao Tung University.
Introduction to OpenGL Muhammad Aamir Khan Lecturer, DCS, UOP.
Computer Graphics with OpenGL 교재 : [1] OPENGL 을 이용한 컴퓨터 그래픽스 5 판, 번역서, Edward Angel 저, 강영민 역, 사이텍미디어, 2009 참고서적 : [1] Computer Graphics with OpenGL, Donald.
Install for 64bit  Glui2.36.zip 을 다운로드  src  msvc  glui.sin 파일을 Visual Studio 2010 으로 열기  _glui library 를 선택후 빌드  빌드시 다음과 같은 오류가 발생하면 error C2252:
AUTUMN Asst. Prof. Dr. Gazi Erkan BOSTANCI Slides by Robert Thomson, Süleyman Tosun and Kurtuluş Küllü.
Computer Graphics Lecture 1. Books D. Hearn, M. P. Baker, "Computer Graphics with OpenGL", 3rd Ed., Prentice Hall, 2003, ISBN
Computer Graphics 한신대학교 컴퓨터정보소프트웨어학부 류승택 2006 년 2 학기.
Computer Graphics -practical- Lecture 6. (visual c++) open gl library To use open GL with VC++ we add these files:- 1)Glut.h C:\program files\ Microsoft.
The Inverse Trigonometric Functions (Continued)
OpenGL project setup.
Introduction to Computer Graphics
Computer Graphics and Animation (AT70. 09) Comp. Sc. and Inf. Mgmt
CS4610/7610: Introduction to Computer Graphics
Introduction to OpenGL
Section 9.1 Polar Coordinates
2D Viewing Pipeline.
גרפיקה ממוחשבת: מבוא ל-OpenGL
Section 8.3 The Law of Cosines
Physics-based simulation for visual computing applications
Section 11.8 Linear Programming
Copyright © 2008 Pearson Prentice Hall Inc.
Copyright © 2008 Pearson Prentice Hall Inc.
Mathematical Models: Building Functions
Copyright © 2008 Pearson Prentice Hall Inc.
Copyright © 2008 Pearson Prentice Hall Inc.
Computer Graphics Practical Lesson 1-
CSE 411 Computer Graphics Lecture #0 Organizational Issues
Lecture #5 Interactive Input Methods
Quadratic Equations in the Complex Number System
Properties of Rational Functions
Computer Graphics (under.) Sep., 2017
Copyright © 2008 Pearson Prentice Hall Inc.
Copyright © 2008 Pearson Prentice Hall Inc.
Introduction to OpenGL
The Inverse Trigonometric Functions (Continued)
Presentation transcript:

Computer Graphics with OpenGL 교재 : [1] OPENGL 을 이용한 컴퓨터 그래픽스 5 판, 번역서, Edward Angel 저, 구자영 등역, 사이텍미디어, 2009 참고서적 : [1] Computer Graphics with OpenGL, Donald Hearn and M. Pauline Baker, International ed., Prentice Hall Inc., 2004 [2] OpenGL Superbible, Richard S. Wright, Jr. Benjamin Lipchak 외 저, 3 판, 최현호 역, 정보문화사, 2005 [3] OpenGL 을 이용한 컴퓨터그래픽스, Donald Hearn, M. Pauline Baker, Warren Carithers, 이병래, 강현철, 김용규 공역, 피어든에듀케 이션코리아, 2011 강의노트 : vrlab.suwon.ac.kr/mwlee

컴퓨터그래픽스 수업 내용 ­ 컴퓨터그래픽스 이론 OpenGL 을 이용한 컴퓨터그래픽스 5 판 ­OpenGL 예제 프로그래밍 검토 OpenGL Superbible 3 판 시간별 수업 내용 ­ 월 6-7 교시 (214 호 ): CG 이론 + OpenGL 예제 ­ 화 8 교시 (214 호 ): / CG 이론 강의자료 : 2 컴퓨터그래픽스

OpenGL 프로그래밍 예제 OpenGL 예제 이용한 파라미터 변경 OpenGL ­ GLUT ­ OpenGL Sample ­OpenGL SuperBible 3 판 예제 3 컴퓨터그래픽스

GLUT 프로그램 설치 비주얼 C++ GLUT 라이브러리 : glutdlls37beta ­ ­ GLUT 설치 ­Visual Studio 6 glut.h  C:\Program Files\Microsoft Visual Studio\VC98\Include\GL glut32.lib  C:\Program Files\Microsoft Visual Studio\VC98\Lib glut32.dll  C:\Windows\System32 ­Visual Studio 2005 glut.h  C:\Program Files\Microsoft Visual Studio 8\VC\PlatformSDK\Include\gl glut32.lib  C:\Program Files\Microsoft Visual Studio 8\VC\PlatformSDK\Lib glut32.dll  C:\Windows\System32 4 컴퓨터그래픽스

­Visual Studio 2008 glut.h  C:\Program Files\Microsoft SDKs\Windows\v6.0A\Include\gl glut32.lib  C:\Program Files\Microsoft SDKs\Windows\v6.0A\Lib glut32.dll  C:\Windows\System32 ­Visual Studio 2010 glut.h  C:\Program Files\Microsoft SDKs\Windows\v7.0A\Include\gl glut32.lib  C:\Program Files\Microsoft SDKs\Windows\v7.0A\Lib glut32.dll  C:\Windows\System32 glut32.dll  C:\Windows\SysWOW64 // 폴더없으면 안해도 됨 5 컴퓨터그래픽스