E D R , A S I H C RSS

Full text search for "Interactive Graphics"

Interactive Graphics


Search BackLinks only
Display context of search results
Case-sensitive searching
  • MobileJavaStudy/SnakeBite/FinalSource . . . . 22 matches
          public void paint(Graphics g) {
          g.drawImage(splashImage, getWidth() / 2, getHeight() / 2, Graphics.HCENTER | Graphics.VCENTER);
          public void drawBoard(Graphics g) {
          public void clearBoard(Graphics g) {
          public void drawCell(Graphics g, int x, int y) {
          public void paint(Graphics g) {
          g.drawString("Level : " + level, canvasWidth / 2, 0, Graphics.HCENTER | Graphics.TOP);
          g.drawString("Game Over!!", canvasWidth / 2, canvasHeight, Graphics.HCENTER | Graphics.BOTTOM);
          public void paint(Graphics g) {
          public void paint(Graphics g) {
          g.drawString("Game Over", getWidth()/2, getHeight()/2, Graphics.TOP|Graphics.HCENTER);
          public void cleanBackGround(Graphics g) {
          public void paintScore(Graphics g) {
          g.drawString("Score: "+score, boardX, 2, Graphics.TOP|Graphics.LEFT);
          public void paintWall(Graphics g) {
          public void paintApplae(Graphics g) {
          public void paintSnake(Graphics g) {
  • MobileJavaStudy/SnakeBite/Spec2Source . . . . 8 matches
          public void drawBoard(Graphics g) {
          public void clearBoard(Graphics g) {
          public void drawSnakeCell(Graphics g, SnakeCell cell) {
          public void paint(Graphics g) {
          g.drawString("Game Over!!", canvasWidth / 2, canvasHeight, Graphics.HCENTER | Graphics.BOTTOM);
          public void paint(Graphics g) {
          public void paint(Graphics g) {
  • MobileJavaStudy/SnakeBite/Spec3Source . . . . 8 matches
          public void drawBoard(Graphics g) {
          public void clearBoard(Graphics g) {
          public void drawSnakeCell(Graphics g, SnakeCell cell) {
          public void paint(Graphics g) {
          g.drawString("Game Over!!", canvasWidth / 2, canvasHeight, Graphics.HCENTER | Graphics.BOTTOM);
          public void paint(Graphics g) {
          public void paint(Graphics g) {
  • 데블스캠프2012/넷째날/묻지마Csharp/Mission3/김수경 . . . . 7 matches
          this.hour.Font = new System.Drawing.Font("굴림", 27.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
          this.minute.Font = new System.Drawing.Font("굴림", 27.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
          this.second.Font = new System.Drawing.Font("굴림", 27.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
          this.milli.Font = new System.Drawing.Font("굴림", 27.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
          this.label1.Font = new System.Drawing.Font("굴림", 27.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
          this.label2.Font = new System.Drawing.Font("굴림", 27.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
          this.label3.Font = new System.Drawing.Font("굴림", 27.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
  • ComputerGraphicsClass . . . . 5 matches
         수업내용: Computer Graphics 에 대한 전반적인 이해. 주로 3D 관련 내용과 프로젝트.
         [ComputerGraphicsClass/Report2004_1]
         [ComputerGraphicsClass/Report2004_2]
         [ComputerGraphicsClass/Exam2004_1]
         [ComputerGraphicsClass/Exam2004_2]
  • TicTacToe/임인택 . . . . 5 matches
         import java.awt.Graphics;
          public void paint(Graphics g) {
          private void drawChoices(Graphics g) {
          private void drawGrids(Graphics g) {
          private void drawCell(Graphics g, int i, int j, int choice) {
  • ZeroPageHistory . . . . 5 matches
         ||1학기 ||2기 회원모집. 1학년을 위한 각종 강좌 마련, 스터디 조직. 2학년 각종 스터디 조직(C++, Graphics, OS, System-Programming, 한글 구현). 첫돌 잔치. ||
          * C++, Computer Graphics, OS, System-Programming
          * Data Structure, Clipper, UNIX, Game, Computer Graphics
          * Delpya, OS, Graphics, Assembly, Coprocessor, UNIX, Network
          * 3D Graphics
  • ZeroPage성년식/거의모든ZP의역사 . . . . 5 matches
         ||1학기 ||2기 회원모집. 1학년을 위한 각종 강좌 마련, 스터디 조직. 2학년 각종 스터디 조직(C++, Graphics, OS, System-Programming, 한글 구현). 첫돌 잔치. ||
          * C++, Computer Graphics, OS, System-Programming
          * Data Structure, Clipper, UNIX, Game, Computer Graphics
          * Delpya, OS, Graphics, Assembly, Coprocessor, UNIX, Network
          * 3D Graphics
  • 데블스캠프2004/금요일 . . . . 5 matches
          * java.awt.Graphics 추가
          * public void paint(Graphics g) 메소드
         import java.awt.Graphics;
          public void paint(Graphics g)
          public void paint(Graphics g)
  • 3DGraphicsFoundation . . . . 4 matches
          * 수학함수 모듈 인터페이스 예제 - C style : ["3DGraphicsFoundation/MathLibraryTemplateExample"]
          * 상협 ["3DGraphicsFoundation/SolarSystem"] : 역동하는 태양계.. 또는 엽기 태양계.. ㅡㅡ;;
          * 인수 ["3DGraphicsFoundation/INSU/SolarSystem"] : 아무 생각없이 도는 태양계 뭔가 좀 이상하다는--;
          * ["3DGraphicsFoundationSummary"]
  • TheJavaMan/스네이크바이트 . . . . 4 matches
          Graphics gb;
          public void update(Graphics g){
          public void paint(Graphics g){
          gb=buff.getGraphics();
  • TheJavaMan/테트리스 . . . . 4 matches
          Graphics memG;
          memG = mem.getGraphics();
          public void paint(Graphics g) {
          public void update(Graphics g) {
  • TicTacToe/zennith . . . . 4 matches
         import java.awt.Graphics;
          void drawX(int x, int y, Graphics g) {
          void drawO(int x, int y, Graphics g) {
          public void paint(Graphics g) {
  • MobileJavaStudy/HelloWorld . . . . 3 matches
          public void paint(Graphics g) {
          g.drawString("Hello World!", 0, 0, Graphics.TOP|Graphics.LEFT);
  • TicTacToe/김홍선 . . . . 3 matches
         import java.awt.Graphics;
          //getGraphics().drawRect(0,0,900,900);
          public void paint(Graphics g)
  • TicTacToe/박진영,곽세환 . . . . 3 matches
         import java.awt.Graphics;
          public void paint(Graphics g) {
          g = getContentPane().getGraphics();
  • ClassifyByAnagram/sun . . . . 2 matches
         import java.awt.Graphics;
          public void paint( Graphics g )
  • ComputerGraphicsClass/Exam2004_1 . . . . 2 matches
         Homogeneous Coordination 에 대해 쓰고 왜 Computer Graphics 분야에서 많이 이용되는지 쓰시오
         ComputerGraphicsClass
  • EightQueenProblem/da_answer . . . . 2 matches
          Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
          Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
  • TicTacToe/유주영 . . . . 2 matches
          import java.awt.Graphics;
          public void paint(Graphics g)
  • TicTacToe/임민수,하욱주 . . . . 2 matches
         import java.awt.Graphics;
          public void paint(Graphics g) {
  • TicTacToe/조동영 . . . . 2 matches
         import java.awt.Graphics;
          public void paint(Graphics g) {
  • TicTacToe/조재화,신소영 . . . . 2 matches
         import java.awt.Graphics;
          public void paint(final Graphics g)
  • 상협/Diary/8월 . . . . 2 matches
         || ["3DGraphicsFoundation"] || 0%|| 아직 || 어뜨케.. -_-;;||
         || ["3DGraphicsFoundation"] || 3D MAX ASE 파일 OpenGL에서 읽기 || 2% || 흑... -_-;;||
  • 3DAlca . . . . 1 match
         || 7.12 || ["3DGraphicsFoundation"]스터디 그룹에 참가 ||
  • 3DGraphicsFoundationSummary . . . . 1 match
         ["3DGraphicsFoundation"]
  • 3D업종 . . . . 1 match
          * [3DGraphicsFoundation]
  • 3rdPCinCAUCSE/FastHand전략 . . . . 1 match
         ComputerGraphicsClass 수업 레포트와 전자상거래 레포트, ComputerNetworkClass 레포트 구현 관계상 3명이 거의 일주일 내내 밤새면서 몸이 축난 중에도 수상을 하게 되어서 기뻤습니다. (문제풀던중 코 후비던 [1002]군이 피를 봤다는 후일담이 전해지고 있다는..;) 동기들끼리의 팀이여서 그런지 완벽한 룰 설정과 호흡, 아이디어의 모음이 빛을 발했다고 생각합니다.
  • 5인용C++스터디/윈도우에그림그리기 . . . . 1 match
         GDI(Graphics Device Interface)란 윈도우의 클라이언트 영역에 그리기를 하는데 사용되는 함수이다. 비디오 출력과 프린터에 그래픽 출력을 책임지고 있는 부분이다. 사용자가 Windows용으로 작성하는 응용 프로그램이 GDI를 사용하여 시각적인 정보를 출력할 뿐 아니라 Windows 자체도 GDI를 사용하여 메뉴, 스크롤 바, 아이콘, 그리고 마우스 커서 같은 사용자 인터페이스 아이템의 시각적인 출력을 수행한다.
  • Classes . . . . 1 match
         [http://kangcom.com/common/bookinfo/bookinfo.asp?sku=200401090003 Computer Graphics with Open GL 3rd Ed]
  • ComputerGraphicsClass/Report2004_1 . . . . 1 match
         ComputerGraphicsClass
  • ConvertAppIntoApplet/진영 . . . . 1 match
          public void paintComponent(Graphics g)
  • DataCommunicationSummaryProject/Chapter5 . . . . 1 match
          * Interactive(서킷) High Multimedia
  • DirectDraw . . . . 1 match
         [선호] 뭐.. DirectGraphics로 통합되었다고 하지만 아직 예전의 기능들은 전부 남아있고 영원히 2D를 안하는 것은 아니기 때문에. 뭐 2D를 3D를 통해 표현하는 기법들만 요새는 소개되고 있어서 안타깝기도 하지만.^^ [[BR]]
  • EightQueenProblem/밥벌레 . . . . 1 match
          Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
  • Gof/Composite . . . . 1 match
         CompositePattern의 예는 거의 모든 객체지향 시스템에서 찾을 수 있다. Smalltalk 의 Model/View/Container [KP88] 의 original View 클래스는 Composite이며, ET++ (VObjects [WGM88]) 이나 InterViews (Styles [LCI+92], Graphics [VL88], Glyphs [CL90])등 거의 대부분의 유저 인터페이스 툴킷과 프레임워크가 해당 과정을 따른다. Model/View/Controller 의 original View에서 주목할만한 점은 subview 의 집합을 가진다는 것이다. 다시 말하면, View는 Component class 이자 Composite class 이다. Smalltalk-80 의 Release 4.0 은 View 와 CompositeView 의 서브클래스를 가지는 VisualComponent 클래스로 Model/View/Controller 를 변경했다.
  • NumericalAnalysisClass . . . . 1 match
         수학에 약한 1002로선 첫방에 이해를 못해서리; 수업때 이해안간건 수치해석책과 3D Graphics 관련 책을 이리저리 섞어보면서 나름대로 더듬거리며 따라갔다. (수치해석책들은 Bezier 가 별로 언급되지 않는 관계로) --석천
  • OpenGL_Beginner . . . . 1 match
          * Computer Graphics using OpenGL
  • PatternOrientedSoftwareArchitecture . . . . 1 match
         || Interactive Systems || Model-View-Controlled, Presentation-Abstraction-Control Pattern || - ||
  • ProgrammingContest . . . . 1 match
         만약 팀을 짠다면 두사람은 PairProgramming으로 코딩을 하고(이 때 Interactive Shell이 지원되는 인터프리터식 언어라면 엄청난 플러스가 될 것임), 나머지 하나는 다른 문제를 읽고 이해하고, (가능하면 단순한) 알고리즘을 생각하고 SpikeSolution을 종이 위에서 실험한 뒤에 현재 커플이 완료를 하면 그 중 한 명과 Pair Switch를 하고 기존에 코딩을 하던 친구 중 하나는 혼자 다른 문제를 읽고 실험을 하는 역할을 맡으면 효율적일 겁니다. 즉, 두 명의 코더와 한 명의 실험자로 이루어지되 지속적으로 짝 바꾸기를 하는 것이죠.
  • StephaneDucasse . . . . 1 match
         최근 Stephane 은 Squeak 에 대한 책을 쓰고 있다. http://scgwiki.iam.unibe.ch:8080/StephaneDucasseWiki 에서 읽을 수 있다. Turtle Graphics 를 이용한 튜토리얼을 제공하는데 정말 재미있다! Smalltalk 를 입문하려는 사람에게 추천.!
  • TCP/IP . . . . 1 match
          * Interactive Shell이 지원되는 언어(e.g. Python, Ruby, ...)를 사용하면 TCP/IP의 개념을 아주 빠른 시간 안에 배울 수 있음. (Python은 내부적으로 C 라이브러리를 그대로 사용) 또, 현재 개발된/개발중인 시스템을 테스트 하는 데에도 매우 편리함. 예컨대, 리코에서는 XMLRPC 서버 접속을 파이썬 쉘에서 하고(import xmlrpc 한 다음에...), 거기서 사용자 등록 등의 서비스를 직접 사용하게 한다.
  • TheJavaMan/달력 . . . . 1 match
          public void paintComponent(Graphics g)
  • TheWarOfGenesis2R . . . . 1 match
          3. [[HTML(<STRIKE>)]] DirectX - DirectGraphics / OpenGL 사용법 익히기. [[HTML(</STRIKE>)]] - 1시간 20분
  • TicTacToe/노수민 . . . . 1 match
          public void paint(Graphics g) {
  • TicTacToe/후근,자겸 . . . . 1 match
          public void paint(Graphics g)
  • XMLStudy_2002/Start . . . . 1 match
          *SVG(Scalable Vector Graphics)포맷과 같은 그래픽 분야 전자상거래의 트랜잭션 처리, MathML과 같은 수학식 표현 등이 사용 예
  • ZP도서관 . . . . 1 match
         || 3D Computer Graphics || Alan Watt || A.Wesley || 정해성 || 원서 ||
  • cheal7272 . . . . 1 match
          * Graphics(****)
  • 데블스캠프2002/진행상황 . . . . 1 match
         Python으로 만든 스타크래프트 놀이는 참가자들이 무척이나 좋아했다. 또 그 직전에 Python Interactive Shell에서 간단하게 남자, 여자, 인간 클래스를 직접 만들어 보게 한 것도 좋아했다. 아주 짧은 시간 동안에 OOP의 "감"을 느끼게 해주는 데 일조를 했다고 본다.
  • 수업평가 . . . . 1 match
         ||ComputerGraphicsClass || . || . || . || . || . || . ||. ||
  • 오목/인수 . . . . 1 match
          public void paint(Graphics g) {
  • 이영호/64bit컴퓨터와그에따른공부방향 . . . . 1 match
         OS를 만들기도 하겠으며, 저 사람들과 같은 MDir Clone, Graphics, Sound 등 모든 것을 Assembly로 해내겠다.
  • 정모/2002.8.22 . . . . 1 match
          * ["MFCStudy_2002_1"], ["MFCStudy_2002_2"] ,["CppStudy_2002_1"], ["CppStudy_2002_2"], ["3DGraphicsFoundation"]
  • 컴퓨터공부지도 . . . . 1 match
         이를 위해 Interactive Shell이 지원되는 인터프리터 언어(e.g. Python)와 패킷 스니퍼(e.g. tcpdump, ethereal, etherpeek, ...), 웹 브라우져, FTP, TELNET 클라이언트 등을 이용할 수 있다.
  • 학회간교류 . . . . 1 match
          * PGP (Programmable Graphics Pipeline)
Found 56 matching pages out of 7555 total pages (5000 pages are searched)

You can also click here to search title.

Valid XHTML 1.0! Valid CSS! powered by MoniWiki
last modified 2021-02-07 05:23:27
Processing time 0.0358 sec