ๆญฏLecture2.PDF
|
|
- ์๋ด ๋ฐฉ
- 6 years ago
- Views:
Transcription
1 VISUAL C++/MFC Lecture 2? Update Visual C ++/MFC Graphic Library OpenGL? Frame OpenGL 3D Graphic library coding CLecture1View? OpenGL MFC coding Visual C++ Project Settings Link Tap Opengl32lib, Glu32lib, glauxlib header file member data lecture1viewh
2 void winglresize(cx, cy) wingldrawscene() public: HGLRC m_hrc; HDC m_hdc; void winglresize(cx, cy); void wingldrawscene();? ^^ Window Style Pixel Format Rendering Context OnCreate() OnCreate() WM_CREATE, lecture1viewh OnCreate()? Class Wizard(View- ClassWizard, or Ctrl+w) Message WM_CREATE Add Function Member function OnCreate() OK
3 lecture1viewcpp OnCreate() int CLecture1View::OnCreate(LPCREATESTRUCT lpcreatestruct) if (CView::OnCreate(lpCreateStruct) == -1) return -1; int npixelformat; m_hdc = ::GetDC(m_hWnd); PIXELFORMATDESCRIPTOR pfd = sizeof(pixelformatdescriptor), 1, PFD_DRAW_TO_WINDOW PFD_SUPPORT_OPENGL PFD_DOUBLEBUFFER, PFD_TYPE_RGBA, 24, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 0, 0, PFD_MAIN_PLANE, 0, 0, 0, 0 ; npixelformat = ChoosePixelFormat(m_hDC, &pfd);
4 VERIFY(SetPixelFormat(m_hDC, npixelformat, &pfd)); m_hrc = wglcreatecontext(m_hdc); return 0;? WM_DESTROY ClassWizard Message box WM_DESTROY Add function Ok lecture1viewcpp OnDestroy code void Clecutre1View::OnDestroy() CView::OnDestroy(); wgldeletecontext(m_hrc); ::ReleaseDC(m_hWnd, m_hdc); WM_SIZE Message ClassWizard WM_SIZE function OnSize() void CLecture1View::OnSize(UINT ntype, int cx, int cy ) CView::OnSize(nType, cx, cy); x=0; y=10; wglmakecurrent(m_hdc, m_hrc); winglresize(600, 600, x, y); wglmakecurrent(null, NULL); OnDraw CLecture1Viewcpp void CLecture1View::OnDraw(CDC* pdc) CLecture1Doc* pdoc = GetDocument(); ASSERT_VALID(pDoc); wglmakecurrent(m_hdc, m_hrc); wingldrawscene(); SwapBuffers(m_hDC); wglmakecurrent(m_hdc, NULL);
5 MFC OpenGL OpenGL cider can rendering Rotation, Translation lingting, shading, texture mapping ^^ // lecture1viewh /////////////////////////////////////////////////////////// class CLecture1View : public CView /////////////////////////////////////////////////////////// // privat: double angle; unsigned int texname[4]; GLUquadricObj *CiderObj; float light_position[3]; enum CIDER, EARTH ; int view_mode; public: HGLRC m_hrc; HDC m_hdc; void winglresize(cx, cy); void wingldrawscene(); void winglresize(int w, int h); void winglinitrc(); /////////////////////////////////////////////////////////// lecture1viewcpp void CLecuture1View::winGLInitRC() glclearcolor (00, 00, 00, 10); glcleardepth( 10f); glshademodel (GL_SMOOTH); glenable(gl_depth_test); // //texture mapping //cider can object // // // // // //OpenGL // // Texture setting
6 // Bitmap image AUX_RGBImageRec * prgbimage; // 4 texture glgentextures (4, texname); ////////////////////////// First texture ///////////////////////////////////// glbindtexture (GL_TEXTURE_2D, texname[0]); // Bitmap (cider_tbmp) prgbimage = auxdibimageloada ( "cider_tbmp" ); // S gltexparameteri (GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_CLAMP); // T gltexparameteri (GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_CLAMP); // Mag gltexparameteri (GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR); // Min gltexparameteri (GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR); // Texture glteximage2d (GL_TEXTURE_2D, 0, 3, prgbimage->sizex, prgbimage->sizey, 0, GL_RGB, GL_UNSIGNED_BYTE, prgbimage->data); ////////////////////////////////////////////////////////////////////////////// ////////////////////////// Second texture //////////////////////////////////// // texture glbindtexture (GL_TEXTURE_2D, texname[1]); // Bitmap (cider_bbmp) prgbimage = auxdibimageloada ( "cider_bbmp" ); // S gltexparameteri (GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_CLAMP); // T gltexparameteri (GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_CLAMP); // Mag gltexparameteri (GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR); // Min gltexparameteri (GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR); // Texture glteximage2d (GL_TEXTURE_2D, 0, 3, prgbimage->sizex, prgbimage->sizey, 0, GL_RGB, GL_UNSIGNED_BYTE, prgbimage->data); ////////////////////////////////////////////////////////////////////////////// ////////////////////////// Third texture ///////////////////////////////////// // texture glbindtexture (GL_TEXTURE_2D, texname[2]);
7 // Bitmap (cider_sbmp) prgbimage = auxdibimageloada ( "cider_sbmp" ); // S gltexparameteri (GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_CLAMP); // T gltexparameteri (GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_CLAMP); // Mag gltexparameteri (GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR); // Min gltexparameteri (GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR); // Texture glteximage2d (GL_TEXTURE_2D, 0, 3, prgbimage->sizex, prgbimage->sizey, 0, GL_RGB, GL_UNSIGNED_BYTE, prgbimage->data); ////////////////////////////////////////////////////////////////////////////// ////////////////////////// Fourth texture ///////////////////////////////////// // texture glbindtexture (GL_TEXTURE_2D, texname[3]); // Bitmap (earthbmp) prgbimage = auxdibimageloada ( "earthbmp" ); // S gltexparameteri (GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_CLAMP); // T gltexparameteri (GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_CLAMP); // Mag gltexparameteri (GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR); // Min gltexparameteri (GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR); // Texture glteximage2d (GL_TEXTURE_2D, 0, 3, prgbimage->sizex, prgbimage->sizey, 0, GL_RGB, GL_UNSIGNED_BYTE, prgbimage->data); ////////////////////////////////////////////////////////////////////////////// // GL_MODULATE gltexenvi (GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_MODULATE); // CiderObj Quadric object CiderObj = glunewquadric(); CiderObj = glunewquadric (); // Quadric object texture gluquadrictexture (CiderObj, GL_TRUE); // Quadric object normal gluquadricnormals (CiderObj, GLU_SMOOTH); glenable(gl_texture_2d); glenable(gl_lighting); glenable(gl_light0);
8 void CLecture1View::winGLResize(int w, int h) glviewport (0, 0, (GLsizei) w, (GLsizei) h); glmatrixmode (GL_PROJECTION); glloadidentity (); gluperspective( 500f, (GLdouble) w/h, 10f, 1500f ); glmatrixmode (GL_MODELVIEW); glloadidentity(); glulookat( 50, 50, 50, 0, 0, 0, 0, 0, 1); WM_KEYDOWN WM_TIMER ClassWizard CLecture1Viewcpp void CLecture1View::OnTimer(UINT nidevent) // TODO: Add your message handler code here and/or call default Invalidate(FALSE); // // CView::OnTimer(nIDEvent); //
9 CLecture1View::OnCreate() SetTimer() 50msec wglmakecurrent(m_hdc, m_hrc); winglinitrc(); wglmakecurrent(null,null); SetTimer(1, 50, NULL); // return 0; ClassWizard? WM_KEYDOWN keyboard m view_mode void CLecture1View::OnKeyDown(UINT nchar, UINT nrepcnt, UINT nflags) // TODO: Add your message handler code here and/or call default if(nchar = 'm') if(view_mode == CIDER) view_mode = EARTH; // else if(view_mode == EARTH) view_mode = CIDER; // // CView::OnKeyDown(nChar, nrepcnt, nflags);? Compile
10 ?, file \Lecture1\ directory gks directory \debug\ Lecture1exe file \debug\ keyboard m
11 ? C++ soruce CLecture1View CcideView, CLecture1Doc CCideDoc Good Bye!! ^^// Reference :, Visual C++ 2,, 1998,, OpenGL, 1999 : ( )
Microsoft PowerPoint - lecture17-ch8.ppt
OpenGL Texturing Texture Mapping 321190 2007๋ ๋ดํ๊ธฐ 6/2/2007 ๋ฐ๊ฒฝ์ OpenGL ์์ํ ์ค์ณ๋งตํ (texture mapping) ์์ํ 3 ๋จ๊ณ ํ ์ค์ณํ์ฑํ glenable(gl_texture_2d) ํ ์ค์ณ๋งตํ๋ฐฉ๋ฒ ( ๋ฉํ, ํํฐ๋ฑ ) ์ ์ gltexparameteri(gl_texture_2d, GL_TEXTURE_WRAP_S,
More informationMicrosoft PowerPoint D View Class.pptx
Digital 3D Anthropometry 5. 3D View Class Sungmin Kim SEOUL NATIONAL UNIVERSITY 3D View Class ์์ค๊ณ 3 ์ฐจ์๊ทธ๋ํฝ์๊ฐ์ Introduction Surface graphics Volume graphics Lighting and shading 3์ฐจ์๋ชจ๋ธ์ 2์ฐจ์ํ๋ฉด์ํ์ํ๋ํด๋์ค Rendering
More informationMicrosoft PowerPoint - lecture18-ch8
OpenGL Texturing Texture Mapping 321190 2007๋ ๋ดํ๊ธฐ 5/25/2007 ๋ฐ๊ฒฝ์ OpenGL ์์ํ ์ค์ณ๋งตํ (texture mapping) ์์ํ 3 ๋จ๊ณ ํ ์ค์ณํ์ฑํ glenable(gl_texture_2d) ํ ์ค์ณ๋งตํ๋ฐฉ๋ฒ ( ๋ฉํ, ํํฐ๋ฑ ) ์ ์ gltexparameteri(gl_texture_2d, GL_TEXTURE_WRAP_S,
More informationMicrosoft PowerPoint - hci2-lecture5-messagemap.ppt
Windows ์ C++ MFC Message Map HCI Programming 2 (321190) 2008๋ ๊ฐ์ํ๊ธฐ 10/14/2008 ๋ฐ๊ฒฝ์ C++ ์๋คํ์ฑ (Polymorphsim) ๊ธฐ๋ฐํด๋์ค์์ด๋ค๋ฉค๋ฒํจ์๋ฅผํ์ํด๋์ค์์์ฌ์ ์ (overriding) ํ๊ธฐ์ํด์๋๊ธฐ๋ฐํด๋์ค์๊ทธ๋ฉค๋ฒํจ์๊ฐ๊ฐ์ํจ์ (virtual function) ๋ก์ ์๋์ด์ผํจ MFC ์ CWnd
More informationuntitled
MFC MFC MFC AppWizard ๏คญ MFC MFC ๏ง ๏ฆบ ๏ง Document/View MFC Visual C++ AppWizard MFC ๏ฅง ๏ฆ ๏ฅท ๏คญ ๏ฅง Document View ๏ฅง ๏ฆ AppWizard View ๏ง CEditView ๏ฆ ๏ฆ ๏ฅฏ ๏จ ๏ฅง ๏ฆบ Document/View MFC Application Framework ๏ฆณ OLE Document
More information๋จ๊ตญ๋ํ๊ต๋ฉํฐ๋ฏธ๋์ด๊ณตํ๊ทธ๋ํฝ์คํ๋ก๊ทธ๋๋ฐ๊ธฐ๋ง๊ณ ์ฌ (2012 ๋ ๋ดํ๊ธฐ ) 2012 ๋ 6 ์ 12 ์ผํ๊ณผํ๋ฒ์ด๋ฆ ๊ธฐ๋ง๊ณ ์ฌ ๋ด๋น๊ต์ : ๋จ๊ตญ๋ํ๊ต๋ฉํฐ๋ฏธ๋์ด๊ณตํ์ ๊ณต๋ฐ๊ฒฝ์ l ๋ต์๋ฐ๋์๋ต์์ง์๊ธฐ์ ํ ๊ฒ. ๊ณต๊ฐ์ด๋ถ์กฑํ ๊ฒฝ์ฐ๋ฐ๋์๋ต์์ง๋ช์ชฝ์๋ค์์๋ค๊ณ ๋ช ๊ธฐํํ๊ธฐ์ ํ ๊ฒ. ๊ทธ์ธ์๊ฒฝ์ฐ์๋ต์์ง๋ค
๊ธฐ๋ง๊ณ ์ฌ ๋ด๋น๊ต์ : ๋จ๊ตญ๋ํ๊ต๋ฉํฐ๋ฏธ๋์ด๊ณตํ์ ๊ณต๋ฐ๊ฒฝ์ l ๋ต์๋ฐ๋์๋ต์์ง์๊ธฐ์ ํ ๊ฒ. ๊ณต๊ฐ์ด๋ถ์กฑํ ๊ฒฝ์ฐ๋ฐ๋์๋ต์์ง๋ช์ชฝ์๋ค์์๋ค๊ณ ๋ช ๊ธฐํํ๊ธฐ์ ํ ๊ฒ. ๊ทธ์ธ์๊ฒฝ์ฐ์๋ต์์ง๋ค์ชฝ์ด๋์ฐ์ต์ง์๊ธฐ์ ํ๋ด์ฉ์๋ต์์ผ๋ก์ธ์ ์ํจ. ๋ต์๋๋ฐ๋์๋ค๋ชจ๋ฅผ์ณ์ํ์คํํ์ํ ๊ฒ. l ๋ต์์ง์ํ๊ณผ, ํ๋ฒ, ์ด๋ฆ์ธ์๋ณธ์ธ์์ํธ๋ฅผ๊ธฐ์ ํ๋ฉด์ฑ์ ๊ณต๊ณ ์ํ๋ฒ๋์ ์ํธ๋ฅผ์ฌ์ฉํ ๊ฒ์. 1. ๋ค์์ oglclass ์์์ ๊ณตํ๋
More informationOpen GL
Graphics Basic Windows & OpenGL Programming ์ปดํจํฐ๊ทธ๋ํฝ์ค์ฐ๊ตฌ์ค OpenGL ๊ด๋ จ์ฐธ๊ณ ์ฌ์ดํธ OpenGL ๊ณต์์ฌ์ดํธ http://www.opengl.org/ Khronos Group http://www.khronos.org/ Nehe Productions http://nehe.gamedev.net/ OpenGL ํ์ผ์ค์ ์์ถ์ํผํ๋ค์๊ฒฝ๋ก๋กํ์ผ์๋ณต์ฌ
More information(Microsoft PowerPoint - JXEUOAACMYBW.ppt [\310\243\310\257 \270\360\265\345])
Discrete Techniques Historical Background 1970 ๋ ๋ : local illumination models Phong shading : plastic ์ฒ๋ผ๋ณด์ธ๋ค... 1980๋ ๋ : realism ์์ถ๊ตฌ global illumination models high cost, but very realistic texture mapping
More informationMicrosoft PowerPoint - 13prac.pptx
Viewing 1 th Week, 29 OpenGL Viewing Functions glulookat() Defining a viewing matrix glortho() Creating a matrix for an orthographic parallel viewing i volume glfrustum() Creating a matrix for a perspective-view
More information<B9CCB5F0BEEE20C1A4BAB8C3B3B8AE2E687770>
์ ๋ชฉ : ๋ฏธ๋์ด์ ๋ณด์ฒ๋ฆฌํ๋ก๊ทธ๋๋ฐ์ค์ต๋ชจ์ ์ผ์ : 2002. 6. 15 ์์ฑ์ : ์ฑ์ฉ์ฒ ํ๋ฒ : ํ๋จ๋ํ๊ต์ ๋ณดํต์ ๋ฉํฐ๋ฏธ๋์ด๊ณตํ๋ถ ( ์ ์์ ๋ณดํต์ ์ ๊ณต ) ๋ฏธ๋์ด์ ๋ณด์ฒ๋ฆฌํ๋ก๊ทธ๋๋ฐ์ค์ต์์ ์ค๋ช 1.256 X 256 grayscale ์๋์คํ๋ ์ดํ๋ก๊ทธ๋จ Resource View ์ menu item ์์ Display ๋ฐ์ Raw gray ๋ผ๋ง๋ ๋ค์์๊ทธ๋ฆผ๊ณผ๊ฐ์ด ID ์
More informationPowerPoint ํ๋ ์ ํ ์ด์
06 Texture Mapping 01 Texture Mapping ์์ข ๋ฅ 02 Texture Mapping ์ด๊ฐ๋ฅํ๊ฐ์ฒด์์ฑ 03 ๊ณ ๊ธ Texture Mapping 01 Texture Mapping ์์ข ๋ฅ 1. ์๋ Texture Mapping 2. ์๋ Texture Mapping 2 01 Texture Mapping ์์ข ๋ฅ ์ขํ๋ณํ Pipeline ์์
More informationMicrosoft PowerPoint - lecture16-ch8.ppt [ํธํ ๋ชจ๋]
OpenGL Texturing Texture Mapping 514780 017 ๋ ๊ฐ์ํ๊ธฐ 11/16/017 ๋จ๊ตญ๋ํ๊ต๋ฐ๊ฒฝ์ OpenGL ์์ํ ์ค์ณ๋งตํ (texture mapping) ์์ํ 3 ๋จ๊ณ ํ ์ค์ณํ์ฑํ glenable(gl_texture_d) ํ ์ค์ณ๋งตํ๋ฐฉ๋ฒ ( ๋ฉํ, ํํฐ๋ฑ ) ์ ์ gltexparameteri(gl_texture_d, GL_TEXTURE_WRAP_S,
More informationPowerPoint ํ๋ ์ ํ ์ด์
01 OpenGL ๊ณผ Modeling 01 OpenGL API 02 Rendering Pipeline 03 Modeling 01 OpenGL API 1. OpenGL API ์ค์น๋ฐํ๊ฒฝ์ค์ 2. OpenGL API ๊ตฌ์กฐ 2 01 1. OpenGL API ์ค์น๋ฐํ๊ฒฝ์ค์ OpenGL API ์์๋์ ์์น System Memory Graphics Application
More informationDialog Box ์คํํ์ผ์ Web์ ํฌํจ์ํค๋ ๋ฐฉ๋ฒ
DialogBox Web 1 Dialog Box Web 1 MFC ActiveX ControlWizard workspace 2 insert, ID 3 class 4 CDialogCtrl Class 5 classwizard OnCreate Create 6 ActiveX OCX 7 html 1 MFC ActiveX ControlWizard workspace New
More informationMicrosoft PowerPoint - lecture16-ch8.ppt [ํธํ ๋ชจ๋]
OpenGL Texturing Texture Mapping 31190 013 ๋ ๋ดํ๊ธฐ 5/8/013 ๋ฐ๊ฒฝ์ OpenGL์์ํ ์ค์ณ๋งตํ (texture mapping) ์์ํ 3 ๋จ๊ณ ํ ์ค์ณํ์ฑํ glenable(gl_texture_d) ํ ์ค์ณ๋งตํ๋ฐฉ๋ฒ ( ๋ฉํ, ํํฐ๋ฑ ) ์ ์ gltexparameteri(gl_texture_d, GL_TEXTURE_WRAP_S,
More informationMicrosoft PowerPoint - lecture15-ch8.ppt [ํธํ ๋ชจ๋]
OpenGL Frame Buffer Buffer, Image, and Texture Mapping 514780 2017 ๋ ๊ฐ์ํ๊ธฐ 11/16/2017 ๋จ๊ตญ๋ํ๊ต๋ฐ๊ฒฝ์ ์๋ฒํผ (Color buffers) ์ ๋ฉด๋ฒํผ (Front buffer) ํ๋ฉด๋ฒํผ (Back buffer) ๋ณด์กฐ๋ฒํผ (Auxiliary buffer) ์ค๋ฒ๋ ์ด๋ฉด (Overlay plane) ๊น์ด๋ฒํผ
More informationK&R2 Reference Manual ๋ฒ์ญ๋ณธ
typewriter structunion struct union if-else if if else if if else if if if if else else ; auto register static extern typedef void char short int long float double signed unsigned const volatile { } struct
More informationMicrosoft PowerPoint - lecture16-ch8 [ํธํ ๋ชจ๋]
OpenGL Texturing Texture Mapping 31190 01 ๋ ๋ดํ๊ธฐ 5/31/01 ๋ฐ๊ฒฝ์ OpenGL์์ํ ์ค์ณ๋งตํ (texture mapping) ์์ํ 3 ๋จ๊ณ ํ ์ค์ณํ์ฑํ glenable(gl_texture_d) ํ ์ค์ณ๋งตํ๋ฐฉ๋ฒ ( ๋ฉํ, ํํฐ๋ฑ ) ์ ์ gltexparameteri(gl_texture_d, GL_TEXTURE_WRAP_S,
More information(Microsoft PowerPoint - lecture16-ch8.ppt [\310\243\310\257 \270\360\265\345])
OpenGL Texturing Texture Mapping 514780 2016 ๋ ๊ฐ์ํ๊ธฐ 11/18/2016 ๋ฐ๊ฒฝ์ OpenGL ์์ํ ์ค์ณ๋งตํ (texture mapping) ์์ํ 3 ๋จ๊ณ ํ ์ค์ณํ์ฑํ glenable(gl_texture_2d) ํ ์ค์ณ๋งตํ๋ฐฉ๋ฒ ( ๋ฉํ, ํํฐ๋ฑ ) ์ ์ gltexparameteri(gl_texture_2d, GL_TEXTURE_WRAP_S,
More informationMicrosoft PowerPoint - lecture17-ch8
OpenGL Frame Buffer Buffer, Image, and Texture Mapping 321190 2007๋ ๋ดํ๊ธฐ 5/22/2007 ๋ฐ๊ฒฝ์ ์๋ฒํผ (Color buffers) ์ ๋ฉด๋ฒํผ (Front buffer) ํ๋ฉด๋ฒํผ (Back buffer) ๋ณด์กฐ๋ฒํผ (Auxiliary buffer) ์ค๋ฒ๋ ์ด๋ฉด (Overlay plane) ๊น์ด๋ฒํผ (Depth
More information(Microsoft PowerPoint - lecture15-ch8.ppt [\310\243\310\257 \270\360\265\345])
OpenGL Frame Buffer Buffer, Image, and Texture Mapping 514780 2016 ๋ ๊ฐ์ํ๊ธฐ 11/18/2016 ๋ฐ๊ฒฝ์ ์๋ฒํผ (Color buffers) ์ ๋ฉด๋ฒํผ (Front buffer) ํ๋ฉด๋ฒํผ (Back buffer) ๋ณด์กฐ๋ฒํผ (Auxiliary buffer) ์ค๋ฒ๋ ์ด๋ฉด (Overlay plane) ๊น์ด๋ฒํผ (Depth
More informationMicrosoft PowerPoint - lecture15-ch8.ppt [ํธํ ๋ชจ๋]
OpenGL Frame Buffer Buffer, Image, and Texture Mapping 321190 2014 ๋ ๋ดํ๊ธฐ 5/15/2014 ๋ฐ๊ฒฝ์ ์๋ฒํผ (Color buffers) ์ ๋ฉด๋ฒํผ (Front buffer) ํ๋ฉด๋ฒํผ (Back buffer) ๋ณด์กฐ๋ฒํผ (Auxiliary buffer) ์ค๋ฒ๋ ์ด๋ฉด (Overlay plane) ๊น์ด๋ฒํผ (Depth
More informationMicrosoft Word - cg09-final-answer.doc
๊ธฐ๋ง๊ณ ์ฌ ๋ด๋น๊ต์ : ๋จ๊ตญ๋ํ๊ต๋ฉํฐ๋ฏธ๋์ด๊ณตํ์ ๊ณต๋ฐ๊ฒฝ์ ๋ต์๋ฐ๋์๋ต์์ง์๊ธฐ์ ํ ๊ฒ. ๊ณต๊ฐ์ด๋ถ์กฑํ ๊ฒฝ์ฐ๋ฐ๋์๋ต์์ง๋ช์ชฝ์๋ค์์๋ค๊ณ ๋ช ๊ธฐํํ๊ธฐ์ ํ ๊ฒ. ๊ทธ์ธ์๊ฒฝ์ฐ์๋ต์์ง๋ค์ชฝ์ด๋์ฐ์ต์ง์๊ธฐ์ ํ๋ด์ฉ์๋ต์์ผ๋ก์ธ์ ์ํจ. ๋ต์๋๋ฐ๋์๋ค๋ชจ๋ฅผ์ณ์ํ์คํํ์ํ ๊ฒ. ์ฑ์ ๊ณต๊ณ ์์ค๊ฐ๊ณ ์ฌ๋์ ์ถํ์ํธ๋ฅผ์ฌ์ฉํ ๊ฒ์. 1. ๋ค์๋ฌธ์ ์๋ตํ์์ค. (50์ ) 1) ์ง๊ตํฌ์ (orthographic projection),
More information63-69ยฑรจยดรซยฟยต
Study on the Shadow Effect of 3D Visualization for Medical Images ased on the Texture Mapping D.Y. Kim, D.S. Kim, D.K. Shin, D.Y. Kim 1 Dept. of iomedical Engineering, Yonsei University = bstract = The
More informationPowerPoint ํ๋ ์ ํ ์ด์
@ Lesson 4 (Object) (Class) (Instance) (Method) (Constructor) Memory 1 UML 1 @ & 1 (Real World) (Software World) @ &.. () () @ & 2 (Real World) (Software World) OOA/ Modeling Abstraction Instantiation
More informationPowerPoint ํ๋ ์ ํ ์ด์
03 ์ฅ ์์์ฒ๋ฆฌ๋ฅผ์ํ Visual C++ ๋์งํธ์์ํ์ผํฌ๋งท MFC AppWizard[exe] ๋ฅผ์ด์ฉํ MFC ํ๋ก์ ํธ์์ฑ MFC ๋ฅผ์ด์ฉํ์์์ฒ๋ฆฌ์ . ์ถ๋ ฅํ๋ก๊ทธ๋จ์์ฑ MFC ๋ฅผ์ด์ฉํ์์์ถ์ MFC ๋ฅผ์ด์ฉํ์์ํ๋ MFC ๋ฅผ์ด์ฉํ์์ํ์์์ฒ๋ฆฌ ํ๋น๋ฏธ๋์ด ( ์ฃผ ) ํ์ต๋ชฉํ 3 ์ฅ. ์์์ฒ๋ฆฌ๋ฅผ์ํ Visual C++ ์์์ฒ๋ฆฌ์์ฌ์ฉ๋๋ RAW ํ์ผํฌ๋งท์์ดํดํ๋ค.
More information้ฎ๋ฎโฐ๏ง๋ถพ๋ฑ??๏งกโค๋ฏ
5 1 2 3 4 5 6 7 8 9 1 2 3 6 7 1 2 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 30 31 32 33 34 36 37 38 39 40 41 42 43 44 45 OK 46 47 OK 48 OK 49 50 51 OK OK 52 53 54 55 56 57 58 59 60 61
More informationMicrosoft Word - cg09-midterm.doc
์ค๊ฐ๊ณ ์ฌ ๋ด๋น๊ต์ : ๋จ๊ตญ๋ํ๊ต๋ฉํฐ๋ฏธ๋์ด๊ณตํ์ ๊ณต๋ฐ๊ฒฝ์ ๋ต์๋ฐ๋์๋ต์์ง์๊ธฐ์ ํ ๊ฒ. ๊ณต๊ฐ์ด๋ถ์กฑํ ๊ฒฝ์ฐ๋ฐ๋์๋ต์์ง๋ช์ชฝ์๋ค์์๋ค๊ณ ๋ช ๊ธฐํํ๊ธฐ์ ํ ๊ฒ. ๊ทธ์ธ์๊ฒฝ์ฐ์๋ต์์ง๋ค์ชฝ์ด๋์ฐ์ต์ง์๊ธฐ์ ํ๋ด์ฉ์๋ต์์ผ๋ก์ธ์ ์ํจ. ๋ต์๋๋ฐ๋์๋ค๋ชจ๋ฅผ์ณ์ํ์คํํ์ํ ๊ฒ. ๋ต์์ง์ํ๊ณผ, ํ๋ฒ, ์ด๋ฆ์ธ์๋ณธ์ธ์์ํธ๋ฅผ๊ธฐ์ ํ๋ฉด์ฑ์ ๊ณต๊ณ ์ํ๋ฒ๋์ ์ํธ๋ฅผ์ฌ์ฉํ ๊ฒ์. 1. ๋ง์ผ๋ฉด true, ํ๋ฆฌ๋ฉด false๋ฅผ์ ์ผ์์ค.
More informationAnalytics > Log & Crash Search > Unity ios SDK [Deprecated] Log & Crash Unity ios SDK. TOAST SDK. Log & Crash Unity SDK Log & Crash Search. Log & Cras
Analytics > Log & Crash Search > Unity ios SDK [Deprecated] Log & Crash Unity ios SDK. TOAST SDK. Log & Crash Unity SDK Log & Crash Search. Log & Crash Unity SDK... Log & Crash Search. - Unity3D v4.0 ios
More informationMicrosoft Word - cg07-final.doc
๊ธฐ๋ง๊ณ ์ฌ ๋ด๋น๊ต์ : ๋จ๊ตญ๋ํ๊ต๋ฉํฐ๋ฏธ๋์ด๊ณตํ์ ๊ณต๋ฐ๊ฒฝ์ ๋ต์๋ฐ๋์๋ต์์ง์๊ธฐ์ ํ ๊ฒ. ๊ณต๊ฐ์ด๋ถ์กฑํ ๊ฒฝ์ฐ๋ฐ๋์๋ต์์ง๋ช์ชฝ์๋ค์์๋ค๊ณ ๋ช ๊ธฐํํ๊ธฐ์ ํ ๊ฒ. ๊ทธ์ธ์๊ฒฝ์ฐ์๋ต์์ง๋ค์ชฝ์ด๋์ฐ์ต์ง์๊ธฐ์ ํ๋ด์ฉ์๋ต์์ผ๋ก์ธ์ ์ํจ. ๋ต์๋๋ฐ๋์๋ค๋ชจ๋ฅผ์ณ์ํ์คํํ์ํ ๊ฒ. ์ฑ์ ๊ณต๊ณ ์์ค๊ฐ๊ณ ์ฌ๋์ ์ถํ์ํธ๋ฅผ์ฌ์ฉํ ๊ฒ์. 1. ๋ง์ผ๋ฉด true, ํ๋ฆฌ๋ฉด false๋ฅผ์ ์ผ์์ค. (20์ ) 1) ์๋ฉด์ ๊ฑฐ์๊ณ ๋ฆฌ์ฆ์คํ์ธํฐ์๊ณ ๋ฆฌ์ฆ
More informationchap10.PDF
10 C++ Hello!! C C C++ C++ C++ 2 C++ 1980 Bell Bjarne Stroustrup C++ C C++ C, C++ C C 3 C C++ (prototype) (type checking) C C++ : C++ 4 C C++ (prototype) (type checking) [ 10-1] #include extern
More informationChapter 1. MFC ์์ํ๊ธฐ
Chapter 1. MFC ์์ํ๊ธฐ 1. MFC(Microsoft Foundation Class) ๊ฐ์ 2. Visual Studio 2015 ํ๋ก๊ทธ๋จ์ค์นํ๊ธฐ 3. ๋ง์ฐ์คํด๋ฆญํ๋ก๊ทธ๋จ์์ฑ 4. ๊ทธ๋ฆผ๊ทธ๋ฆฌ๊ธฐํ๋ก๊ทธ๋จ์์ฑ 5. ๋ง์ฐ์ค์ขํ๊ฐ๊ตฌํ๊ธฐํ๋ก๊ทธ๋จ์์ฑ 1 1.1. MFC ๊ฐ์ 2 1.1.1. C++ ์ธ์ด ๊ฐ์ฒด์งํฅ์ธ์ด (Object-Oriented Programming,
More informationDeok9_Exploit Technique
Exploit Technique CodeEngn Co-Administrator!!! and Team Sur3x5F Member Nick : Deok9 E-mail : DDeok9@gmail.com HomePage : http://deok9.sur3x5f.org Twitter :@DDeok9 > 1. Shell Code 2. Security
More information์๋ฐ ํ๋ก๊ทธ๋๋ฐ
5 (kkman@mail.sangji.ac.kr) (Class), (template) (Object) public, final, abstract [modifier] class ClassName { // // (, ) Class Circle { int radius, color ; int x, y ; float getarea() { return 3.14159
More information10 ์ฅ์ธ๊ท ์ ํ๋ก๊ทธ๋๋ฐ 10.1 ๊ฒ์๋ฃฐ (1) ์ฌ๋๊ณผ์ปดํจํฐ๊ฐ์ธ์ฐ๋ 2์ธ์ฉ๋ณด๋๊ฒ์์ด๋ค. (2) ์ฌ๋์ด๋จผ์ ์์ง์ด๊ณ , ์ปดํจํฐ๊ฐ์์ง์ธ๋ค. (3) ์ธ๊ท ์๊ฐ๋ก๋ฐ์ธ๋ก๋ฐฉํฅ์ผ๋ก 2์นธ๊น์ง๋น์นธ์ผ๋ก์ด๋์ํฌ์์๋ค. (4) 1์นธ์์ด๋ํ ๊ฒฝ์ฐ์๋๋ณต์ ๊ฐ๋๋ค. (5) ์ด๋ํํ์ฃผ๋ณ์ธ๊ท ์๋ดํธ์ผ๋ก๋ฐ๋๋ค.
10 ์ฅ์ธ๊ท ์ ํ๋ก๊ทธ๋๋ฐ 10.1 ๊ฒ์๋ฃฐ (1) ์ฌ๋๊ณผ์ปดํจํฐ๊ฐ์ธ์ฐ๋ 2์ธ์ฉ๋ณด๋๊ฒ์์ด๋ค. (2) ์ฌ๋์ด๋จผ์ ์์ง์ด๊ณ , ์ปดํจํฐ๊ฐ์์ง์ธ๋ค. (3) ์ธ๊ท ์๊ฐ๋ก๋ฐ์ธ๋ก๋ฐฉํฅ์ผ๋ก 2์นธ๊น์ง๋น์นธ์ผ๋ก์ด๋์ํฌ์์๋ค. (4) 1์นธ์์ด๋ํ ๊ฒฝ์ฐ์๋๋ณต์ ๊ฐ๋๋ค. (5) ์ด๋ํํ์ฃผ๋ณ์ธ๊ท ์๋ดํธ์ผ๋ก๋ฐ๋๋ค. (6) ๋๋ค์ด๋ํ ์์์ผ๋ฉด, ๊ฒฝ๊ธฐ๊ฐ์ข ๋ฃ๋๋ค. (7) ๊ฐ์ฅ๋ง์์ธ๊ท ์๊ฐ์ง์ฌ๋์ด์ด๊ธด๋ค. 10.2 ๊ธฐ์ด์ง์
More informationMPLAB C18 C
MPLAB C18 C MPLAB C18 MPLAB C18 C MPLAB C18 C #define START, c:\mcc18 errorlevel{0 1} char isascii(char ch); list[list_optioin,list_option] OK, Cancel , MPLAB IDE User s Guide MPLAB C18 C
More information๋งค๋ ฅ์ ์ธ ๋งฅ/iOS ๊ฐ๋ฐ ํ๊ฒฝ ๊ทธ๋ฆผ A-1 ๋ณ๊ฒฝ ์ฌํญ ํ์ธ์ฐฝ Validate Setting... ํญ๋ชฉ์ ๊ณ ๋ฅด๋ฉด ๋๋ค. ํ๋ก์ ํธ ํธ์ง๊ธฐ๋ฅผ ์ ํํ์ ๋ ํ๋ฉด ์ ๋์ชฝ์ ์๋ ๋์ผํ Validate Settings... ๋ฒํผ์ ํด๋ฆญํด๋ ๋๋ค. ์ด์ ๋ด๋น๊ฒ์ดํฐ ๋ชฉ๋ก์์ ๋ณ๊ฒฝํ
Xcode4 ๋ถ๋ก A Xcode 4.1์์ ๋ฐ๋ ๋ด์ฉ ์ด๋ฒ ์ฅ์์๋ ๋งฅ OSX 10.7 ๋ผ์ด์ธ๊ณผ ํจ๊ป ๋ฐํ๋ Xcode 4.1์์ ์๋กญ๊ฒ ์ถ๊ฐ๋ ๊ธฐ ๋ฅ๊ณผ ๋ณ๊ฒฝ๋ ๊ธฐ๋ฅ์ ์ ๋ฆฌํ๋ ค๊ณ ํ๋ค. ์ฐ์ ๊ฐ์ฅ ๋จผ์ ์์๋ฌ์ผ ํ ์ฌํญ์ ios ๊ฐ๋ฐ์ ์ํ ๊ธฐ๋ณธ ์ปดํ์ผ๋ฌ๊ฐ LLVM- GCC 4.2๋ก ๋ฐ๋์๋ค๋ ์ ์ด๋ค. LLVM-GCC 4.2 ์ปดํ์ผ๋ฌ๋ Xcode 4.0์ ๊ธฐ๋ณธ
More informationMicrosoft PowerPoint - lecture4-ch2.ppt
Graphics Programming OpenGL Camera OpenGL ์์๋์นด๋ฉ๋ผ๊ฐ๋ฌผ์ฒด์๊ณต๊ฐ (drawing coordinates) ์์์ (origin) ์์์นํ๋ฉฐ z- ๋ฐฉํฅ์ผ๋กํฅํ๊ณ ์๋ค. ๊ด์ธก๊ณต๊ฐ์์ง์ ํ์ง์๋๋ค๋ฉด, ๋ํดํธ๋ก 2x2x2 ์ ๋ฐฉ์ฒด์ viewing volume์์ฌ์ฉํ๋ค. (1, 1, 1) 321190 2007๋ ๋ดํ๊ธฐ 3/16/2007 ๋ฐ๊ฒฝ์
More informationPowerPoint ํ๋ ์ ํ ์ด์
03 ๋ชจ๋ธ๋ณํ๊ณผ์์ ๋ณํ 01 ๊ธฐํ๋ณํ 02 ๊ณ์ธต๊ตฌ์กฐ Modeling 03 Camera ์์ ๋ณํ ๊ธฐํ๋ณํ (Geometric Transformation) 1. ์ด๋ (Translation) 2. ํ์ (Rotation) 3. ํฌ๊ธฐ์กฐ์ (Scale) 4. ์ ๋จ (Shear) 5. ๋ณตํฉ๋ณํ 6. ๋ฐ์ฌ๋ณํ 7. ๊ตฌ์กฐ๋ณํ๋ณํ 2 ๊ธฐํ๋ณํ (Geometric Transformation)
More informationMicrosoft PowerPoint - CPP_chap3
3 ์ฅ. ๋ง์ฐ์ค์ํค๋ณด๋๋ฉ์์ง 1 1. ๋ฅ๋์ ์ ๋ ฅ๋ฐ๊ธฐ์์๋์ ์ ๋ ฅ๋ฐ๊ธฐ 2 ํ์ต๋ชฉํ ์ด๋ฒคํธ์์ฃผ๋ก์ง๊ฐ๋ ์ํ์ ํ๋ค ๋ฉ์์ง๊ฐ๋ ์ํ์ ํ๋ค ๋ฅ๋์ ์ ๋ ฅ๋ฐ๊ธฐ ์ ์ฐจ์ ๋ก์งํ๋ก๊ทธ๋จ์์์ ๋ ฅ๋ฐ๊ธฐ ์ธ์ ๋ฌด์์์ ๋ ฅ๋ฐ์์ง๋ํ๋ก๊ทธ๋จ์์ ์ฐจ์ ๋ก์ง์์๊ฒฐ์ ์ : ํ ์คํธ๋ชจ๋ C ํ๋ก๊ทธ๋จ์์๋ฌธ์์ด์์ ๋ ฅ๋ฐ๋๊ฒฝ์ฐ ์๋์ ์ ๋ ฅ๋ฐ๊ธฐ ์ด๋ฒคํธ์์ฃผ๋ก์งํ๋ก๊ทธ๋จ์์์ ๋ ฅ๋ฐ๊ธฐ ์๋์ฐํ๊ฒฝ์์๋ง์ฐ์ค๋ํค๋ณด๋์ ๋ ฅ์ Windows
More information์๋์ฐ์์คํ ํ๋ก๊ทธ๋๋ฐ
๊ฐ์ฒด์งํฅํ๋ก๊ทธ๋๋ฐ์์ฉ Chap 4. ๋ํ์์์์ปจํธ๋กค (#1) 2013.09.27. ์ค๋ณ์ฐ ์ปดํจํฐ๊ณตํ๊ณผ๊ธ์ค๊ณต๊ณผ๋ํ๊ต Control ๋ค์๊ฐ์ง์๋์ฐ Dialog ๊ฐ์ ์ฌ์ฉ์์์ ๋ ฅ์๋ฐ๊ธฐ์ํ Object ์์งํฉ ์ข ๋ฅ ํ๋ก๊ทธ๋จ์ํ๋์ค์ฌ์ฉ์์์ ๋ ฅ์ดํ์ํ ๋๋ค์ด์ผ๋ก๊ทธ๋ฐ์ค์ถ๋ ฅ ๋ค์ด์ผ๋ก๊ทธ๋ฐ์ค๋์ฌ์ฉ์๋ก๋ถํฐ์ ๋ ฅ๋ฐ์๋ฐ์ดํฐ๋ฅผ๋ฉ์ธ๋ฃจํด์๋๊ธฐ๊ณ ์๋ฉธ Modal Dialog Parent window
More informationC# Programming Guide - Types
C# Programming Guide - Types ์ต๋๊ฒฝ lifeisforu@wemade.com ์ด๋ฌธ์๋ MSDN ์ Types ๋ฅผ์์ฝํ๊ณ ๋ณด์ถฉํ๊ฒ์ ๋๋ค. http://msdn.microsoft.com/enus/library/ms173104(v=vs.100).aspx Types, Variables, and Values C# ์ type ์๋ฏผ๊ฐํ์ธ์ด์ด๋ค. ๋ชจ๋
More information01-OOPConcepts(2).PDF
Object-Oriented Programming Concepts Tel: 02-824-5768 E-mail: hhcho@selabsoongsilackr? OOP (Object) (Encapsulation) (Message) (Class) (Inheritance) (Polymorphism) (Abstract Class) (Interface) 2 1 + = (Dependency)
More informationPowerPoint ํ๋ ์ ํ ์ด์
@ Lesson 3 if, if else, if else if, switch case for, while, do while break, continue : System.in, args, JOptionPane for (,, ) @ vs. logic data method variable Data Data Flow (Type), ( ) @ Member field
More information์ด๋ณด์๋ฅผ ์ํ C# 21์ผ ์์ฑ
C# 21., 21 C#., 2 ~ 3 21. 2 ~ 3 21.,. 1~ 2 (, ), C#.,,.,., 21..,.,,, 3. A..,,.,.. Q&A.. 24 C#,.NET.,.,.,. Visual C# Visual Studio.NET,..,. CD., www. TeachYour sel f CSharp. com., ( )., C#.. C# 1, 1. WEEK
More information์ฌ๋ผ์ด๋ 1
13์ฅ์ง๋ ฌํ ๊น์ฑ์๊ต์ ๊ธ์ค๊ณต๊ณผ๋ํ๊ต ์ปดํจํฐ๊ณตํ๋ถ ๋ํ๋จผํธ / ๋ทฐ๊ตฌ์กฐ (1) ๋ํ๋จผํธ์๋ทฐ ๋์คํฌ์์ ์ฅ๋ํ์ผ๋ฐ์ดํฐ๋ฅผ์ฝ๋๊ฒฝ์ฐ ๋ํ๋จผํธ๊ฐ์ฒด ๋ทฐ๊ฐ์ฒด ํ์ผ ์ฌ์ฉ์ ์ฝ๊ธฐ ํ๋ฉดํ์ 2 ๋ํ๋จผํธ / ๋ทฐ๊ตฌ์กฐ (2) ๋ํ๋จผํธ์๋ทฐ ์ฌ์ฉ์๊ฐ๋ฐ์ดํฐ๋ฅผ์ ๋ ฅํ๋๊ฒฝ์ฐ ๋ํ๋จผํธ๊ฐ์ฒด ๋ทฐ๊ฐ์ฒด ํ์ผ ์ฌ์ฉ์ ์ ์ฅ ์ ๋ ฅ 3 ๋ํ๋จผํธ / ๋ทฐ๊ตฌ์กฐ (3) ๋ํ๋จผํธ์๋ทฐ ์ ๋ ฅ๋๋ฐ์ดํฐ๋ฅผ๋์คํฌํ์ผ์์ ์ฅํ๋๊ฒฝ์ฐ
More informationMAX+plus II Getting Started - ๋ฌด์์ ๋ฐ๋ผํ๊ธฐ
๋ฌด์์ ๋ฐ๋ผํ๊ธฐ 2001 10 4 / Version 20-2 0 MAX+plus II Digital, Schematic Capture MAX+plus II, IC, CPLD FPGA (Logic) ALTERA PLD FLEX10K Series EPF10K10QC208-4 MAX+plus II Project, Schematic, Design Compilation,
More informationMicrosoft PowerPoint - lecture2-opengl.ppt [ํธํ ๋ชจ๋]
OpenGL & GLUT OpenGL & GLUT 321190 2011 ๋ ๋ดํ๊ธฐ 3/15/2011 ๋ฐ๊ฒฝ์ OpenGL http://www.opengl.org/ http://www.sgi.com/software/opengl Windows95 ์ดํ OpenGL ์ดํ์ค์ผ๋ก๋ค์ด๊ฐ์์. ftp://ftp.microsfot.com/softlib/mslfiles/opengl95.exe
More informationiii. Design Tab ์ Click ํ์ฌ WindowBuilder ๊ฐ์๋์ผ๋ก์์ฑํ GUI ํ๋ก๊ทธ๋๋ฐํ๊ฒฝ์ํ์ธํ๋ค.
Eclipse ๊ฐ๋ฐํ๊ฒฝ์์ WindowBuilder ๋ฅผ์ด์ฉํ Java ํ๋ก๊ทธ๋จ๊ฐ๋ฐ ์ด์๋ Java ํ๋ก๊ทธ๋จ์๊ธฐ์ด๋ฅผ์ดํดํ๊ณ ์๋์ฌ๋์๋์์ผ๋ก Embedded Microcomputer ๋ฅผ์ด์ฉํ์ ์ด์์คํ ์ PC ์์ Serial ํต์ ์ผ๋ก์ ์ด (Graphical User Interface (GUI) ํ๊ฒฝ์์ ) ํ๋ํ๋ก๊ทธ๋จ๊ฐ๋ฐ์๋ฅผ์ค๋ช ํ๋ค. WindowBuilder:
More informationMicrosoft PowerPoint _ํ์ผ์ ์ถ๋ ฅ.ppt
8 ์ฅ. ํ์ผ์ ์ถ๋ ฅ ํ์ผ์ ์ถ๋ ฅ์ฐ์ํ (serialization) ์์นด์ด๋ธ (archive) ๊ฐ์ฒด Paint4.dsw Paint5.dsw ๋ ์ง์คํธ๋ฆฌ (registry) ์ค๋ชฉ๊ฒ์ ์์ฒํฅ๋ํ๊ต์ ๋ณด๊ธฐ์ ๊ณตํ๋ถ์ด์์ 1 ํ์ผ์ ์ถ๋ ฅ ์์ฒํฅ๋ํ๊ต์ ๋ณด๊ธฐ์ ๊ณตํ๋ถ์ด์์ 2 ํ์ผ์ ์ถ๋ ฅ์๊ฐ ํ์ผ์ ์ถ๋ ฅ ํ๋ก๊ทธ๋จ์์๋ง๋ ์ ๋ณด๋ฅผํ๋๋์คํฌ์ํ์ผ๋ก์ ์ฅํ๋๋ฐฉ๋ฒ MFC ์์์ฌ์ฉํ๋ํ์ผ์ ์ถ๋ ฅ๋ฐฉ๋ฒ์ธ์ฐ์ํ
More informationPowerPoint ํ๋ ์ ํ ์ด์
@ Lesson 2... ( ). ( ). @ vs. logic data method variable behavior attribute method field Flow (Type), ( ) member @ () : C program Method A ( ) Method B ( ) Method C () program : Java, C++, C# data @ Program
More informationMobile Service > IAP > Android SDK [ ] IAP SDK TOAST SDK. IAP SDK. Android Studio IDE Android SDK Version (API Level 10). Name Reference V
Mobile Service > IAP > Android SDK IAP SDK TOAST SDK. IAP SDK. Android Studio IDE 2.3.3 Android SDK Version 2.3.3 (API Level 10). Name Reference Version License okhttp http://square.github.io/okhttp/ 1.5.4
More informationmanual pdfรรรยพ
www.oracom.co.kr 1 2 Plug & Play Windows 98SE Windows, Linux, Mac 3 4 5 6 Quick Guide Windows 2000 / ME / XP USB USB MP3, WMA HOLD Windows 98SE "Windows 98SE device driver 7 8 9 10 EQ FM LCD SCN(SCAN)
More informationOrcad Capture 9.x
OrCAD Capture Workbook (Ver 10.xx) 0 Capture 1 2 3 Capture for window 4.opj ( OrCAD Project file) Design file Programe link file..dsn (OrCAD Design file) Design file..olb (OrCAD Library file) file..upd
More informationInterstage5 SOAP์๋น์ค ์ค์ ๊ฐ์ด๋
Interstage 5 Application Server ( Solaris ) SOAP Service Internet Sample Test SOAP Server Application SOAP Client Application CORBA/SOAP Server Gateway CORBA/SOAP Gateway Client INTERSTAGE SOAP Service
More informationT100MD+
User s Manual 100% ) ( x b a a + 1 RX+ TX+ DTR GND TX+ RX+ DTR GND RX+ TX+ DTR GND DSR RX+ TX+ DTR GND DSR [ DCE TYPE ] [ DCE TYPE ] RS232 Format Baud 1 T100MD+
More informationแแ ฒแแ ตแแ ต แแ งแซแแ ฎ-แแ กแทแแ ฎ.key
C# 1 or 16 (Binary or Hex) 1:1 C# C# (Java, Python, Go ) (0101010 ). (Variable) : (Value) (Variable) : (Value) ( ) (Variable) : (Value) ( ) ; (Variable) : (Value) ( ) ; = ; (Variable) : (Value) (Variable)
More informationDesign Issues
11 COMPUTER PROGRAMMING INHERIATANCE CONTENTS OVERVIEW OF INHERITANCE INHERITANCE OF MEMBER VARIABLE RESERVED WORD SUPER METHOD INHERITANCE and OVERRIDING INHERITANCE and CONSTRUCTOR 2 Overview of Inheritance
More information07 แแ กแแ กแแ ด แแ กแแ ฃแผแแ กแซ แแ ณแฏแ แ ขแแ ณ.key
[ 07 ] . java.lang Object, Math, String, StringBuffer Byte, Short, Integer, Long, Float, Double, Boolean, Character. java.util Random, StringTokenizer Calendar, GregorianCalendar, Date. Collection, List,
More informationrmi_๋ฐ์ค์ฉ_final.PDF
(RMI) - JSTORM http://wwwjstormpekr (RMI)- Document title: Document file name: Revision number: Issued by: Document Information (RMI)- rmi finaldoc Issue Date: Status:
More information์๋์ฐ์์คํ ํ๋ก๊ทธ๋๋ฐ
๊ฐ์ฒด์งํฅํ๋ก๊ทธ๋๋ฐ์์ฉ Chap 4. ๋ํ์์์์ปจํธ๋กค (#2) 2012.10.08. ์ค๋ณ์ฐ ์ปดํจํฐ๊ณตํ๊ณผ๊ธ์ค๊ณต๊ณผ๋ํ๊ต Control ๋ค์๊ฐ์ง์๋์ฐ Dialog ๊ฐ์ ์ฌ์ฉ์์์ ๋ ฅ์๋ฐ๊ธฐ์ํ Object ์์งํฉ ์ข ๋ฅ ํ๋ก๊ทธ๋จ์ํ๋์ค์ฌ์ฉ์์์ ๋ ฅ์ดํ์ํ ๋๋ค์ด์ผ๋ก๊ทธ๋ฐ์ค์ถ๋ ฅ ๋ค์ด์ผ๋ก๊ทธ๋ฐ์ค๋์ฌ์ฉ์๋ก๋ถํฐ์ ๋ ฅ๋ฐ์๋ฐ์ดํฐ๋ฅผ๋ฉ์ธ๋ฃจํด์๋๊ธฐ๊ณ ์๋ฉธ Modal Dialog Parent window
More informationC++-ยฟรยบยฎรรยผยณ10รรฅ
C C++. (preprocessor directives), C C++ C/C++... C++, C. C++ C. C C++. C,, C++, C++., C++.,.. #define #elif #else #error #if #itdef #ifndef #include #line #pragma #undef #.,.,. #include #include
More information<33372DC0A9B5B5BFECC7C1B7CEB1D7B7A1B9D62E687770>
2010 ํ๋ ๋๋๊ณ ๊ณ์ ์์ ์ํ๋ฌธ์ ์ง ์ถ์ ์์ ๋ฐฉ์ก๋๊น๊ฐํ ํ๊ณผ๋ช ํ๋ฒ - ์ฑ ๋ช ๊ฐ๋ ๊ดํ์ธ ( ์ธ ) ๊ต๊ณผ๋ชฉ๋ช ๊ต๊ณผ๋ชฉ์ฝ๋ ์๋์ฐํ๋ก๊ทธ๋๋ฐ 3 7 ์ถ์ ๋ฒ์ ๊ต์ฌ์ ์ฒด ( ํด๋น๊ฐ์ํฌํจ ) ๋ฌธํญ์ 50 ๋ฌธํญ [50 ๋ฌธํญ 2 ์ =100 ์ ] ์ ์์ฌํญ 1. OMR ๋ต์์ง๋ฐ๋ฌธ์ ์ง์ธ์ ์ฌํญํ๊ธฐ๋๋ฐ๋์์ปดํจํฐ์ฉ์ฌ์ธํ์ผ๋กํ ๊ฒ 2. ํ๊ธฐํ๋ต์์์ ์ ์ด์ผ์ ๋ถ๊ฐํ๋๋ต์ํ๊ธฐ์๊ฐ๋ณํ์ ์ํ ๊ฒ
More informationMicrosoft Word - cg08-final-answer.doc
๊ธฐ๋ง๊ณ ์ฌ ๋ด๋น๊ต์ : ๋จ๊ตญ๋ํ๊ต๋ฉํฐ๋ฏธ๋์ด๊ณตํ์ ๊ณต๋ฐ๊ฒฝ์ ๋ต์๋ฐ๋์๋ต์์ง์๊ธฐ์ ํ ๊ฒ. ๊ณต๊ฐ์ด๋ถ์กฑํ ๊ฒฝ์ฐ๋ฐ๋์๋ต์์ง๋ช์ชฝ์๋ค์์๋ค๊ณ ๋ช ๊ธฐํํ๊ธฐ์ ํ ๊ฒ. ๊ทธ์ธ์๊ฒฝ์ฐ์๋ต์์ง๋ค์ชฝ์ด๋์ฐ์ต์ง์๊ธฐ์ ํ๋ด์ฉ์๋ต์์ผ๋ก์ธ์ ์ํจ. ๋ต์๋๋ฐ๋์๋ค๋ชจ๋ฅผ์ณ์ํ์คํํ์ํ ๊ฒ. ์ฑ์ ๊ณต๊ณ ์์ค๊ฐ๊ณ ์ฌ๋์ ์ถํ์ํธ๋ฅผ์ฌ์ฉํ ๊ฒ์. 1. ๋ค์๋ฌธ์ ์๋ตํ์์ค. (50์ ) 1) ํ๋ฉด์๋ฒ์ ๋ฒกํฐ (normal vector) N๊ณผํ๋ฉด์์๊ด์์ผ๋กํฅํ๋๊ด์๋ฒกํฐ
More information์ฌ๋ผ์ด๋ ์ ๋ชฉ ์์
Shader Programming on GPU (Cg: C for graphics) 2008 ๋ ๋ 1 ํ๊ธฐ ์๊ฐ๋ํ๊ต๊ณต๊ณผ๋ํ์ปดํจํฐ๊ณตํ๊ณผ ์์ธ์ฑ๊ต์ Professor Insung Ihm Dept. of Computer Sci. & Eng. Sogang University, Seoul, Korea (c)2008 ์๊ฐ๋ํ๊ต์ปดํจํฐ๊ณตํ๊ณผ์์ธ์ฑ (Insung Ihm)
More information(Microsoft PowerPoint - CNVZNGWAIYSE.ppt [\310\243\310\257 \270\360\265\345])
Viewing Viewing Process first part : model-view in Chapter 4 second part : projection in Chapter 5 world frame glmatrimode(gl_modelveiw) glmatrimode(gl_projection) camera frame camera ๋ฐฉํฅ object frame 5.
More informationยณยปรรถยผรถรยค
Active Directory Active Directory Active Directory Active Directory m Active Directory m Active Directory m Active Directory m Active Directory m Active Directory m Active Directory m Active
More information์ฌ๋ผ์ด๋ 1
์ฌ์ฉ ์ ์ ์ฌ์ฉ์ ์ฃผ์ ์ฌํญ์ ๋ฐ๋์ ์ฝ๊ณ ์ ํํ๊ฒ ์ง์ผ์ฃผ์๊ธฐ ๋ฐ๋๋๋ค. ์ฌ์ฉ์ค๋ช ์์ ๊ตฌ์ฑํ ํ์๊ณผ ์์์ ์ค์ ์ ๋ค๋ฅผ ์ ์์ต๋๋ค. ์ฌ์ฉ์ค๋ช ์์ ๋ด์ฉ์ ์ ํ์ ์ํํธ์จ์ด ๋ฒ์ ์ด๋ ํต์ ์ฌ์ ์์ ์ฌ์ ์ ๋ฐ๋ผ ๋ค๋ฅผ ์ ์์ต๋๋ค. ๋ณธ ์ฌ์ฉ์ค๋ช ์๋ ์ ์๊ถ๋ฒ์ ์ํด ๋ณดํธ๋ฅผ ๋ฐ๊ณ ์์ต๋๋ค. ๋ณธ ์ฌ์ฉ์ค๋ช ์๋ ์ฃผ์ํ์ฌ ๋ธ๋ฃจ๋ฒ๋์ํํธ์์ ์ ์ํ ๊ฒ์ผ๋ก ํธ์ง ์ค๋ฅ, ์ ๋ณด ๋๋ฝ
More information04_แแ ฉแแ ณแซแแ ตแแ ฆแฏAPI.key
4. API. API. API..,.. 1 ,, ISO/IEC JTC1/SC24, Working Group ISO " (Architecture) " (API, Application Program Interface) " (Metafile and Interface) " (Language Binding) " (Validation Testing and Registration)"
More informationNo Slide Title
Copyright, 2001 Multimedia Lab., CH 3. COM object (In-process server) Eun-sung Lee twoss@mmlab.net Multimedia Lab. Dept. of Electrical and Computer Eng. University of Seoul Seoul, Korea 0. Contents 1.
More information์ฌ๋ผ์ด๋ 1
Visualization with 3D Engine Contents Assignment #3 3D engine์ผ๋ก Robot Arm ์ ์ด Shading Method( Normal Mapping, Environment Mapping ) Hierarchical control of Robot arm 3D Engine: ๋ค๋๋ฆฌVR Install & User Interface
More informationMicrosoft Word - hci07-final-answer.doc
๊ธฐ๋ง๊ณ ์ฌ ๋ด๋น๊ต์ : ๋จ๊ตญ๋ํ๊ต๋ฉํฐ๋ฏธ๋์ด๊ณตํ์ ๊ณต๋ฐ๊ฒฝ์ ๋ต์๋ฐ๋์๋ต์์ง์๊ธฐ์ ํ ๊ฒ. ๊ณต๊ฐ์ด๋ถ์กฑํ ๊ฒฝ์ฐ๋ฐ๋์๋ต์์ง๋ช์ชฝ์๋ค์์๋ค๊ณ ๋ช ๊ธฐํํ๊ธฐ์ ํ ๊ฒ. ๊ทธ์ธ์๊ฒฝ์ฐ์๋ต์์ง๋ค์ชฝ์ด๋์ฐ์ต์ง์๊ธฐ์ ํ๋ด์ฉ์๋ต์์ผ๋ก์ธ์ ์ํจ. ๋ต์๋๋ฐ๋์๋ค๋ชจ๋ฅผ์ณ์ํ์คํํ์ํ ๊ฒ. ๋ต์์ง์ํ๊ณผ, ํ๋ฒ, ์ด๋ฆ์ธ์๋ณธ์ธ์์ํธ๋ฅผ๊ธฐ์ ํ๋ฉด์ฑ์ ๊ณต๊ณ ์ํ๋ฒ๋์ ์ํธ๋ฅผ์ฌ์ฉํ ๊ฒ์. 1. ๋ค์๋ฌธ์ฅ์๋ด์ฉ์ด๋ง์ผ๋ฉด True, ํ๋ฆฌ๋ฉด False๋ฅผํ์ํ์์ค.
More information( )๋ถ๋ก
A ppendix 1 2010 5 21 SDK 2.2. 2.1 SDK. DevGuide SDK. 2.2 Frozen Yoghurt Froyo. Donut, Cupcake, Eclair 1. Froyo (Ginger Bread) 2010. Froyo Eclair 0.1.. 2.2. UI,... 2.2. PC 850 CPU Froyo......... 2. 2.1.
More informationLCD Display
LCD Display SyncMaster 460DRn, 460DR VCR DVD DTV HDMI DVI to HDMI LAN USB (MDC: Multiple Display Control) PC. PC RS-232C. PC (Serial port) (Serial port) RS-232C.. > > Multiple Display
More informationๆญฏ9์ฅ.PDF
9 Hello!! C printf() scanf() getchar() putchar() gets() puts() fopen() fclose() fprintf() fscant() fgetc() fputs() fgets() gputs() fread() fwrite() fseek() ftell() I/O 2 (stream) C (text stream) : `/n'
More informationDocsPin_Korean.pages
Unity Localize Script Service, Page 1 Unity Localize Script Service Introduction Application Game. Unity. Google Drive Unity.. Application Game. -? ( ) -? -?.. ์ค๋น์ฌํญ Google Drive. Google Drive.,.. - Google
More informationPowerPoint ํ๋ ์ ํ ์ด์
@ Lesson 1,..... @ 1 Green Project 1991 Oak Java 1995. 5 December '90 by Patrick Naughton, Mike Sheridan and James Gosling Embedded in various consumer electronic device 1992. 9. 3 Star 7 1993 www portability
More informationBMP ํ์ผ ์ฒ๋ฆฌ
BMP ํ์ผ์ฒ๋ฆฌ ๊น์ฑ์๊ต์ ๊ธ์ค๊ณต๊ณผ๋ํ๊ต ์ปดํจํฐ๊ณตํ๊ณผ ํ์ต๋ด์ฉ ์์๋ฐ์ ํ๋ก๊ทธ๋จ์ ์ 2 Inverting images out = 255 - in 3 /* ์ดํ๋ก๊ทธ๋จ์ 8bit gray-scale ์์์์ ๋ ฅ์ผ๋ก์ฌ์ฉํ์ฌ๋ฐ์ ํํ๋์ผํฌ๋งท์์์์ผ๋ก์ ์ฅํ๋ค. */ #include #include #define WIDTHBYTES(bytes)
More information<4D F736F F F696E74202D203031C0E520C0A9B5B5BFEC20C7C1B7CEB1D7B7A1B9D620B1E2C3CA5FBFB5B3B2C0CCB0F8B4EB205BC8A3C8AF20B8F0B5E55D>
01 : ์๋์ฐํ๋ก๊ทธ๋๋ฐ๊ธฐ์ด ํ์ต๋ชฉํ ์๋์ฐ์ด์์ฒด์ ์์๋์ฐ์์ฉํ๋ก๊ทธ๋จ์ํน์ง์์ดํดํ๋ค. SDK ์์ฉํ๋ก๊ทธ๋จ์์ฑ๊ณผ์ , ๊ธฐ๋ณธ๊ตฌ์กฐ, ๋์์๋ฆฌ๋ฅผ์ดํดํ๋ค. MFC ์์ฉํ๋ก๊ทธ๋จ์์ฑ๊ณผ์ , ๊ธฐ๋ณธ๊ตฌ์กฐ, ๋์์๋ฆฌ๋ฅผ์ดํดํ๋ค. ๋น์ฃผ์ผ C++ ๊ฐ๋ฐํ๊ฒฝ์ฌ์ฉ๋ฒ์์ตํ๋ค. ์๋์ฐ์ด์์ฒด์ ํน์ง (1/3) ๊ทธ๋ํฝ์ฌ์ฉ์์ธํฐํ์ด์ค 1 ์๋์ฐ์ด์์ฒด์ ํน์ง (2/3) ๋ฉ์์ง๊ตฌ๋๊ตฌ์กฐ ์ด๋ฒคํธ๋ฐ์... ๋๊ธฐ
More information5.แแ ณแแ ขแจ(แแ กแผแแ ดแแ กแ แ ญ).key
CHP 5: https://www.youtube.com/watch?v=ns-r91557ds ? (stack): (LIFO:Last-In First-Out):. D C B C B C B C B (element) C (top) B (bottom) (DT) : n element : create() ::=. is_empty(s) ::=. is_full(s) ::=.
More information02 C h a p t e r Java
02 C h a p t e r Java Bioinformatics in J a va,, 2 1,,,, C++, Python, (Java),,, (http://wwwbiojavaorg),, 13, 3D GUI,,, (Java programming language) (Sun Microsystems) 1995 1990 (green project) TV 22 CHAPTER
More informationMicrosoft PowerPoint - java1-lab5-ImageProcessorTestOOP.pptx
2018 ํ๋ ๋ 1 ํ๊ธฐ JAVA ํ๋ก๊ทธ๋๋ฐ II 514760-1 2018 ๋ ๋ดํ๊ธฐ 5/10/2018 ๋ฐ๊ฒฝ์ Lab#1 (ImageTest) Lab#1 ์์์ํ์ผ (Image) ์์ฝ์ด์์ ๋ณด๋ฅผ์ถ๋ ฅ Java Tutorials Lesson: Working with Images https://docs.oracle.com/javase/tutorial/2d/images/index.html
More informationMicrosoft PowerPoint - 04windows.ppt
Game Programming I Windows ํ๋ก๊ทธ๋๋ฐ (1) March 27, 2006 ๋ชฉํ ์๋์ฐํ๋ก๊ทธ๋๋ฐ์์์ด์ฉ๋๋์ด๋ฒคํธ๊ตฌ๋ํ๋ก๊ทธ๋๋ฐ๋ชจ๋ธ์์ดํด Direct3D ๋ฅผ์ด์ฉํ๋์๋์ฐ์ดํ๋ฆฌ์ผ์ด์ ์์์ฑ์์ํ์ต์ํ์์ฝ๋์ดํด ์๋์ฐ (Win32) ์ดํ๋ฆฌ์ผ์ด์ Direct3D API ( ์ดํ๋ฆฌ์ผ์ด์ ํ๋ก๊ทธ๋๋ฐ์ธํฐํ์ด์ค ) ๋ฅผ์ด์ฉํ๊ธฐ์ํดํ์ Win32 API ๋ฅผ์ด์ฉํด์์ฑ
More informationMacaron Cooker Manual 1.0.key
MACARON COOKER GUIDE BOOK Ver. 1.0 OVERVIEW APPLICATION OVERVIEW 1 5 2 3 4 6 1 2 3 4 5 6 1. SELECT LAYOUT TIP 2. Add Page / Delete Page 3. Import PDF 4. Image 5. Swipe 5-1. Swipe & Skip 5-2. Swipe & Rotate
More information๊ทธ๋ํฝ ํ๋ก๊ทธ๋๋ฐ
์ 13 ์ฅ๊ทธ๋ํฝํ๋ก๊ทธ๋๋ฐ 13.1 ๋ฒ ์ง์ด๊ณก์ ์ค์ต 13-1 ์๊ณ ๋ฆฌ์ฆ์ํตํ๋ฒ ์ง์ด๊ณก์ ๊ทธ๋ฆฌ๊ธฐ ์ค์ต 13-2 ์ปจํธ๋กคํฌ์ธํธ์ด๋๋ฐ๋ฒ ์ง์ด๊ณก์ ํด์๋์ค์ ํ๊ธฐ ๊ทธ๋ํฝํ๋ก๊ทธ๋๋ฐ ๋ฒ ์ง์ด๊ณก์ ๋ฒ ์ง์ด๊ณก์ ์๊ณ ๋ฆฌ์ฆ์๊ณก์ ์์์ฑํ๋๋ํ์ ์ด๊ณ ๊ธฐ๋ณธ์ด๋๋์๊ณ ๋ฆฌ์ฆ์ด๋ค. MFC ์์์๋ฒ ์ง์ด๊ณก์ ํจ์ BOOL PolyBezier(const POINT* lppoints, int ncount); lppoints
More information์ฌ๋ผ์ด๋ 1
์ธ๋ชจ๊ทธ๋ํฝ์ค III. ๊ฒ์ํ๋ก๊ทธ๋๋ฐ์ํ์ํ OpenGL Page 1 ๋ชฉ์ฐจ 1. ๊ฐ๋จํ OBJ-C 2. IOS์ OGL VS Win32์ OGL 3. IOS๊ฐ๋ฐํ๊ฒฝ์ค์ 4. ๋ทฐํฌํธ, ํ๋ก์ ์ , ๋ชจ๋ธ๋ทฐ ( ํ์ ์ด๋จผ์ ๋์ด๋์ด๋จผ์ ๋?) Page 2 ์ธ๋ชจ๊ทธ๋ํฝ์ค ๊ฐ๋จํ OBJ-C 2011.07.16 ๊นํ์ Page 3 1. Obj-C (test2_cpp) #import
More information1217 WebTrafMon II
(1/28) (2/28) (10 Mbps ) Video, Audio. (3/28) 10 ~ 15 ( : telnet, ftp ),, (4/28) UDP/TCP (5/28) centralized environment packet header information analysis network traffic data, capture presentation network
More information<B0EDB1DEC7C1B7CEB1D7B7A1B9D6284D DBFE4BEE0C1A4B8AE28B9DAB1E2C8AB292E687770>
I N D E X ๋ชฉ์๋ํ๊ต์ปดํจํฐ๊ณตํ๋ถ - ์์ ๋ด์ฉ์์ฝ - ๊ต๊ณผ๋ชฉ : ๊ณ ๊ธํ๋ก๊ทธ๋๋ฐ1 ๊ตฌ๋ถ : (1~3 ์ค์์ ) PART 1 ํ๊ธฐ : 2013๋ 1ํ๊ธฐ ( ~5์ฃผ์ฐจ ) ๊ต์ : ๋ฐ๊ธฐํ ์ฐธ๊ณ ๋ฌธํ : Visual C++ 2000 MFC Programming ( ์๋ฅ์ถํ์ฌ, 2013) ์๋์ฐํ๋ก๊ทธ๋๋ฐ-Visual C++ MFC Programming ( ํ๋น๋ฏธ๋์ด,
More informationํ๋ก๊ทธ๋จ์ ํ๊ต ๋ฑ์ง์์ ์กฐ๊ธ์ด๋ผ๋ ๋ฐฐ์ด ์ฌ๋๋ค์ ์ํ ํ๋ก๊ทธ๋๋ฐ ๋ ธํธ ์ ๋๋ค. ์ ์ญ์ ๊ทธ ์ฌ๋๋ค ์ค ํ๋ ์ ๋๋ค. ์ค๊ณ ๋ฑํ๊ต ์์ ํ๊ต ๋์๊ด, ์๋ก ์๊ธด ์๋ฆฝ ๋์๊ด ๋ฑ์ ๋ค๋๋ฉฐ ์ฑ ์ ๋ณด ๊ณ ์ ๋ฆฌํ๋ฉฐ ์ด๋์ ๋ ๋ ํ์ผ๋ฅด ๊ณต๋ถํ๊ธด ํ์ง๋ง, ์์ฃผ ์ํ๋ค ๋ณด๋ฉด ๊ธ๋ฐฉ ์์ด
๊ฐ๋๋ฆฌ ์ฐ๊ตฌ์ C ์ธ์ด ๋ ธํธ (tyback.egloos.com) ํ๋ก๊ทธ๋จ์ ํ๊ต ๋ฑ์ง์์ ์กฐ๊ธ์ด๋ผ๋ ๋ฐฐ์ด ์ฌ๋๋ค์ ์ํ ํ๋ก๊ทธ๋๋ฐ ๋ ธํธ ์ ๋๋ค. ์ ์ญ์ ๊ทธ ์ฌ๋๋ค ์ค ํ๋ ์ ๋๋ค. ์ค๊ณ ๋ฑํ๊ต ์์ ํ๊ต ๋์๊ด, ์๋ก ์๊ธด ์๋ฆฝ ๋์๊ด ๋ฑ์ ๋ค๋๋ฉฐ ์ฑ ์ ๋ณด ๊ณ ์ ๋ฆฌํ๋ฉฐ ์ด๋์ ๋ ๋ ํ์ผ๋ฅด ๊ณต๋ถํ๊ธด ํ์ง๋ง, ์์ฃผ ์ํ๋ค ๋ณด๋ฉด ๊ธ๋ฐฉ ์์ด๋จน๊ณ ํ๋๋ผ๊ตฌ์. ๊ทธ๋์,
More information,,,,,, (41) ( e f f e c t ), ( c u r r e n t ) ( p o t e n t i a l difference),, ( r e s i s t a n c e ) 2,,,,,,,, (41), (42) (42) ( 41) (Ohm s law),
1, 2, 3, 4, 5, 6 7 8 PSpice EWB,, ,,,,,, (41) ( e f f e c t ), ( c u r r e n t ) ( p o t e n t i a l difference),, ( r e s i s t a n c e ) 2,,,,,,,, (41), (42) (42) ( 41) (Ohm s law), ( ),,,, (43) 94 (44)
More information13์ฃผ-14์ฃผproc.PDF
12 : Pro*C/C++ 1 2 Embeded SQL 3 PRO *C 31 C/C++ PRO *C NOT! NOT AND && AND OR OR EQUAL == = SQL,,, Embeded SQL SQL 32 Pro*C C SQL Pro*C C, C Pro*C, C C 321, C char : char[n] : n int, short, long : float
More informationPowerPoint ํ๋ ์ ํ ์ด์
์ด๋, ๋์นญ, ํ์ , ์ํ 09 ์ฅ๊ธฐํํ์ ๋ณํ ์์์์ด๋๊ธฐํํ์ ๋ณํ ์์์๋์นญ๊ธฐํํ์ ๋ณํ ์์์ํ์ ๊ธฐํํ์ ๋ณํ ์์์์ํ๊ธฐํํ์ ๋ณํ ํ๋น๋ฏธ๋์ด ( ์ฃผ ) ํ์ต๋ชฉํ 9 ์ฅ. ์ด๋, ๋์นญ, ํ์ , ์ํ๊ธฐํํ์ ๋ณํ ์ด๋์๊ธฐํํ์ ๋ณํ์๊ณต๋ถํ๋ค. ๋์นญ๊ธฐํํ์ ๋ณํ์๊ณต๋ถํ๋ค. ํ์ ๊ธฐํํ์ ๋ณํ์์๋ฆฌ๋ฅผํ์ตํ๋ค. ํ์ ๊ธฐํํ์ ๋ณํ์๊ณ ๋ คํ ์ฌํญ์์๊ฐํ๋ค. ์ํ์์ดํดํ๊ณ ์ํ๋ฐฉ๋ฒ๊ณผ์์ฉ๋ถ์ผ๋ฅผ์๊ฐํ๋ค.
More informationํ์คํ ๊ทธ๋จ๊ตฌํ๊ธฐ ์ฌ์ ์ค๋น : ํ์คํ ๊ทธ๋จ์์ ์ฅํ ๋ฉ๋ชจ๋ฆฌ๊ฐํ์ํจ ํ์ํ๋ฉ๋ชจ๋ฆฌ๊ฐ์ ร ์ ์ฒด์์์ํฝ์ ์๊ทธ๊ฐ์ด 0 ~ 255์ด๋ฏ๋ก 256 ๊ฐ์๋ฉ๋ชจ๋ฆฌํ์ํจ ์์์๊ตฌ์ฑํ๋ํฝ์ ์๊ฐ์๋๋งค์ฐํฌ๋ฏ๋ก๋ฉ๋ชจ๋ฆฌํ์์ unsigned long์ผ๋กํด์ผํจ ( unsigned ๋ +/- ๋ฅผ๊ณ ๋ คํ์ง์๋๋ค๋
๋์งํธ์์์ฒ๋ฆฌ ์ค์ต : ํ์คํ ๊ทธ๋จ ๋ฐฉ์ก์์๋ฏธ๋์ด๊ณผ ํ์คํ ๊ทธ๋จ (Histogram) ํ์คํ ๊ทธ๋จ์ด๋? n ๋์งํธ์์์๊ตฌ์ฑํ๋ํ์๋๋ช ๋๊ฐ์๋ํ๋ด๋๋ฐ์ด๋ค๋ช ๋๊ฐ์๊ฐ์งํฝ์ ์๊ฐ๋ช๊ฐ์๋๊ฐ๋ฅผ๋ํ๋ด๋ํจ์ n ํ์์๋ช ๋๊ฐ์ 0~255 ์ธ๋ฐ๊ฐ๋ช ๋๊ฐ์ํด๋นํ๋ํ์์์๋ฅผ๋ํ๋ด๋ํจ์ ํ์คํ ๊ทธ๋จ๊ตฌํ๋๋ฐฉ๋ฒ 4 4 3 3 ํฝ์ ๊ฐฏ์ 6 5 4 4 3 3 4 1 2 3 2
More informationMicrosoft PowerPoint - IP11.pptx
์ดํ๋ฒ์งธ๊ฐ์์นด๋ฉ๋ผ 1/43 1/16 Review 2/43 2/16 ํ๊ท ๊ฐ ์ค๊ฐ๊ฐ Review 3/43 3/16 ์บ๋์์ง์ถ์ถ void cvcanny(const CvArr* image, CvArr* edges, double threshold1, double threshold2, int aperture_size = 3); aperture_size = 3 aperture_size
More informationJavascript.pages
JQuery jquery part1 JavaScript : e-mail:leseraphina@naver.com http://www.webhard.co.kr I.? 2 ......,,. : : html5 ; ; .
More information2005CG01.PDF
Computer Graphics # 1 Contents CG Design CG Programming 2005-03-10 Computer Graphics 2 CG science, engineering, medicine, business, industry, government, art, entertainment, advertising, education and
More informationMicrosoft Word - ExecutionStack
Lecture 15: LM code from high level language /* Simple Program */ external int get_int(); external void put_int(); int sum; clear_sum() { sum=0; int step=2; main() { register int i; static int count; clear_sum();
More informationIDA 5.x Manual 07.02.hwp
IDA 5.x Manual - Manual 01 - ์๋ฆฌ๋ฅผ ๋ชฉ์ ์ผ๋ก ํ ๊ณณ์์ ๋ฐฐํฌ๊ธ์ง Last Update 2007. 02 ์ด๊ฐ์ / certlab@gmail.com ์ด์ ๋ธ๋ฆฌ์ด ๊ฐ๋ฐ์ ๊ทธ๋ฃน :: ์ด์ ๋ฌ๋ธ http://www.asmlove.co.kr - 1 - IDA Pro ๋ Disassembler ํ๋ก๊ทธ๋จ์ ๋๋ค. ๊ธฐ๊ณ์ด๋ก ๋์ด์๋ ์คํํ์ผ์ ์ด์ ๋ธ๋ฆฌ์ธ์ด
More informationexample code are examined in this stage The low pressure pressurizer reactor trip module of the Plant Protection System was programmed as subject for
2003 Development of the Software Generation Method using Model Driven Software Engineering Tool,,,,, Hoon-Seon Chang, Jae-Cheon Jung, Jae-Hack Kim Hee-Hwan Han, Do-Yeon Kim, Young-Woo Chang Wang Sik, Moon
More information๏ผป์ 1๊ฐ๏ผฝ ํ ์คํธ๋ฅผ ์ ๋ ฅํ์ธ์
์ 14 ๊ฐ ์ฑํ ํ๋ก์ ํธ 1-1 Visual C++ ํ๋ก๊ทธ๋๋ฐ ์ปดํจํฐ๊ณผํ๊ณผ ๊น๊ฐํ๊ต์ ์ 14๊ฐ์ํ์ต๋ด์ฉ์์ผ (Socket) ์๋ฒ์ํด๋ผ์ด์ธํธ CAsyncSocket ์ Csocket Listen, OnAccept, OnReceive ์์ผ (Socket) ์๊ฐ์ TCP/IP ํ๋กํ ์ฝ์์ด์ฉํ์ฌ๋คํธ์ํฌํ๋ก๊ทธ๋จ์๊ฐ์คํ๊ธฐ์ํ์ธํฐํ์ด์ค ์ ์ ๊ณผ์ ๊ตฌ์ฌ์ด์๋์์ผ์ด๋ผ๋๊ฒ์ด์๋ค.
More information