sotu.dvi

Size: px
Start display at page:

Download "sotu.dvi"

Transcription

1 A Graduation Thesis of College of Engineering, Chubu University A Proposal of Programming Evironment of Visualization for Graphic Designer Ayako Takabatake

2

3 DBN DBN DBN DBN Processing Java Processing Processing Processing Adobe Scripting Adobe Scripting Adobe Scripting Adobe Scripting iii

4 iv

5 DBN DBN DBN DBN Processing Processing Java Processing Scripting Scripting Scripting v

6

7 vii

8

9 1,,.,.,,.,,. 2, 3 Visualization System., 4,. 4,,. 1

10

11 2, 4. 4,,,. 2.1 (Visualization System),...,. Design By Numbers (DBN), Processing(P5), Adobe Scripting. 3

12 , 4.,,, , 2.,. 2.. x, y,,. 3D 2, x, y, x, (3 ),. 2 Processing 2.1..,.,. 4

13 : ,. DBN Processing :.,. ( ),. 2.3 DBN 5

14 2 ( )., Processing 2.4..,. 2.3: 2.4: 6

15 ,.,,.,, dpi(dot per inch)..,,,,.,,,. / (, ).,,.,,. ( ),... 7

16 2 2.5.,.,,. 2.5: 2.2.4, Adobe Systems Illustrator.. 2.6: 8

17 3,, 3.,,,. 3.1 DBN MIT John Maeda, Design By Numbers (DBN)[1] DBN Maeda Design By Numbers (DBN),., WEB Java.,. DBN 9

18 3.,.,., DBN DBN 2. Web DBN, : DBN,., px DBN,. 3.2( 1). 3.3( 2) 10

19 3.1. DBN ( 3),. // #1 sample : bokasi // #3 sample : kousi Paper 0 Repeat A { Repeat B { Set [A B] (A+B) // #2 sample : mouse Paper 0 Forever { Set [<Mouse 1> <Mouse 2>] 100 Command Rectangle L B R T { Line L B R B Line R B R T Line R T L T Line L T L B Command RectInRect H V N S { Repeat B 0 N { Set A (B*S) Rectangle (H-A) (V-A) (A+H) (A+V) Paper 0 RectInRect RectInRect RectInRect RectInRect : DBN 1 3.3: DBN 2 3.4: DBN 3 11

20 DBN , 4 DBN. DBN., DBN. DBN. 1. DBN, DBN.. C (sin, cos, tan).,.,., C. 3.1,. DBN. 12

21 3.2. Processing 3.1: 2002 ( ) ( ) ( ) / 3 12 / ( ) ( ) ( ) / 6 12 / Processing MIT Processing Java Processing Maeda Fry Reas, DBN Processing. DBN,., DBN 3 (JPEG, GIF, ). DBN, Processing Java Applet, Web.,. 13

22 Processing Processing Processing., Java. 3.5 Proce55ing.. :. :. :. :. :. :Java. ( Java html ) 3.5: Processing 14

23 3.2. Processing Processing, 3. Basic Mode :. Standard Mode :,. Advanced Mode : JAVA. Basic Mode, Standard Mode. DBN Standard Mode Processing.. Basic Mode, Standard Mode, 3.6. //Basic Mode sample //Standard Mode sample size(200, 200); background(255); nostroke(); color inside = color(143, 149, 229); color middle = color(90, 102, 242); color outside = color(12, 17, 76); fill(inside); ellipse(0, 0, 200, 200); fill(middle); ellipse(0, 0, 100, 100); fill(outside); ellipse(0, 0, 55, 55); void setup() { size(200, 200); nobackground(); refresh(); void refresh(){ fill(251, 182, 218); nostroke(); rect(0, 0, width, height); void loop() { stroke(255, 0, 0); if(mousepressed && pmousex!= 0 && pmousey!= 0) { line(mousex,mousey,pmousex,pmousey); 15

24 3 3.6: Processing Java Processing. Processing Java import,. Processing Java., Processing. 3.7: Java 3.8: Processing 16

25 3.2. Processing //programmed by JAVA //object.java import java.applet.applet; import java.awt.*; import java.lang.object; public class objects extends Applet{ public void init(){ createimage(150,100); setbackground(color.gray); public void paint(graphics g){ int line_x[] = {12,120,125; int line_y[] = {50,15,60; g.setcolor(color.white); g.fillrect(10,10,60,60); g.setcolor(color.black); g.drawrect(10,10,60,60); g.setcolor(color.white); g.filloval(80,10,60,60); g.setcolor(color.black); g.drawoval(80,10,60,60); g.setcolor(color.white); g.fillpolygon(line_x, line_y, 3); g.setcolor(color.black); g.drawpolygon(line_x, line_y, 3); //programmed by Processing size(150,100); rect(10,10,60,60); ellipse(80,10,60,60); triangle(12,50, 120,15, 125,60); 17

26 Processing Processing. Processing ( ),. Java, Java. Java Applet,. DBN,. DBN ( ) DBN, C Java, Processing. Processing, Java (, ) Processing. 18

27 3.3. Adobe Scripting 3.3 Adobe Scripting Adobe Scripting Adobe Systems Illustrator, Photoshop., Illustrator, Photoshop,., Illustrator Adobe Scripting Adobe Illustrator 10, Adobe Photoshop 7. Adobe Scripting. Windows Visual Basic, Macintosh AppleScript, JavaScript 3. JavaScript., Adobe Scripting, Illustrator. JavaScript JavaScript Netscape,.,. HTML WEB. Web, Adobe Scripting Adobe Scripting Illustrator, Illustrator. Illustrator [...]. 19

28 3 Illustrator. Illustrator. JavaScript, 3.9. // Adobe Scripting sample 1 var N = 5120; var doc = documents.add(documentcolorspace.rgb, N/2, 1000); if(documents.length > 0){ var srcpath = "Macintosh HD:Users:populi:AS_Sample:raw.txt"; var thefile = new File(srcPath); var isopen = thefile.open("r"); if(isopen){ thefile.seek(0, 0); line = activedocument.pathitems.add(); var points = new Array(N); for(var i = 0; i < N; i++){ points[i] = new Array(2); for(i = 0; i < N; i++){ var contents = thefile.readln(); points[i][0] = i/2; points[i][1] = contents * ; line.setentirepath(points); thefile.close(); 3.9: Scripting 1 20

29 3.3. Adobe Scripting, JavaScript Illustrator. 3.10, 3.11,. // Adobe Scripting sample 2 if (documents.length > 0 ){ var star = activedocument.pathitems.star(300, 230, 200, 150, 7); var mycolor = new Color(); var myrgb = new RGBColor(); myrgb.red = 255; myrgb.green = 110; myrgb.blue = 30; mycolor.rgb = myrgb; star.fillcolor = mycolor; star.strokecolor = mycolor; for(t=0;t<500;t+=5){ var x= Math.cos(t)*Math.cos(t)* ; var y= Math.sin(t)*Math.sin(t)* ; var z=t-100; var star1 = activedocument.pathitems.star(x, z, 20, 12, 7); var mycolor = new Color(); var mycolor2 = new Color(); var myrgb = new RGBColor(); myrgb.red = *t; myrgb.green = *t; myrgb.blue = 80; var myrgb2 = new RGBColor(); myrgb2.red = 0; myrgb2.green = 255; myrgb2.blue = 80; mycolor.rgb = myrgb; mycolor2.rgb = myrgb2; star1.fillcolor = mycolor; star1.strokecolor = mycolor2; 21

30 3 3.10: Scripting : Scripting 3 22

31 3.3. Adobe Scripting // Adobe Scripting sample 3 var IE = 480; var JE = 640; var doc = documents.add(documentcolorspace.rgb, (JE * 10)/10, (IE * 10)/10); function plot(i, j, red, green, blue){ var circle = activedocument.pathitems.ellipse((i+1)*10, (j+1)*10, 8, 8); mycolor = new Color(); myrgb = new RGBColor(); myrgb.red = parseint(red); myrgb.green = parseint(green); myrgb.blue = parseint(blue); mycolor.rgb = myrgb; circle.fillcolor = mycolor; circle.strokecolor = mycolor; return; if(documents.length > 0){ var srcpath = "Macintosh HD:Users:populi:AS_Sample:dots_color.dat"; var thefile = new File(srcPath); var isopen = thefile.open("r"); if(isopen){ thefile.seek(0, 0); for(var i = 0; i < IE; i++){ for(var j = 0; j < JE; j++){ var red = thefile.readln(); var green = thefile.readln(); var blue = thefile.readln(); if(i%10 == 0 && j%10 == 0){ var dots = plot((i), (j)-1, red, green, blue); thefile.close; 23

32 Adobe Scripting Adobe Scripting. 1..,. 2. Illustrator.. [ ]. Adobe Scripting 2004 illustrator CS. Illustrator., 2004 Adobe Scripting,. 3.4,..,. Web. Macromedia Fash,.,. 24

33 : DBN Processing Adobe Scriptng DBN Processing, Processing., DBN Processing.,,., Adobe Scripting,.,. 25

34

35 4, 4.1,.,,,. Illustrator., Illustrator,.,. 4.1: 27

36 4 4.1, ( 4.2 ).,.,, Illustrator. 4.2: 4.2, ,,.,, Illustrator. 28

37 ,.,,. 4.1: Rect Rect ( x, y, width, height ) ;. FillRect() FillRect ( x, y, width, height ) ;. Square() Square ( x, y ) ;. FillSquare() FillSquare ( x, y) ;. Circle() Circle ( x, y, r ) ;. FillCircle() fillcircle(x, y, r ) ;. Line() Line( x1, y1, x2, y2 ) ; PenColor() PenColor ( r, g, b ) ; PenKind() PenKind( thickness ) ; FillColor FillColor ( r, g, b ) ; Repeat Repeat n n. MousePoint MousePoint0 Mousepoint1. MouseX MouseX0 MouseX1 y. MouseY MouseY0 MouseY1 y. 29

38 ,.. r = 0; Repeat MousePoint { FillColor(r, 0, 0); FillCircle(MouseX, MouseY, 10); r++; b = 150; Repeat MousePoint1 { FillColor(0, 0, b); Line(MouseX1, MouseY1, 300, 250); b--; 4.3: 1 30

39 ,.. 4.4: , Illustrator.. 4.5: 3 31

40

41 5,,.,,. 33

42

43 ,,.,,.,,. 35

44

45 [1] Jhon, M.(1999): Design By Numbers, MIT Press [2] Proce55ing [3] Matt, W.(2002): Digital Information Graphics,Thames & Hudson Ltd, Digital Information Graphics, [4], Information Desighn Source Book,, [5] David, E. P. et al.(2003): Adobe Scripting, Wiley Publishing, Inc. [6] Adobe illustrator version 9.0, Plug-in Software Development Kit Programmer s Guide for Machintosh and Windows, Revised: October 1999 [7] Adobe illustrator version 9.0, Plug-in Software Development Function Reference for Machintosh and Windows, Revised: October 1999 [8] Netscape, netscape devedge, [9], JavaScript,, [10] Sun Microsystems, Sun Microsystems, [11] Sun Microsystems, The Source for Java Technology, [12], Java,, [13] Java2 Platform Std.Ed.v1.3 ( [14],, Java,, [15], JAVA,, [16], CodeWarrior C,, [17], C++,, [18], C,, [19] B.W., D.M., C 2 ANSI,,

46 [20], Visual C++6.0,, [21], Visual C ,, [22],,,, [23], 1, 2, [24] N.Matthew, R.Stones,, Linux UNIX,, [25] Jhon R.Levine, Tony Mason, Doug Brown,, lex and yacc, [26] Microsoft Corporation, UNIX Applcation Migration Guide, October [27] Microsoft Corporation, Services fot UNIX Home, [28] MKS Inc, MKS Toolkit [29] TK, Visual C++ bison flex tk prg/tip1.htm [30], nitoyon.com/vc++, 38

47 2004 3

tn_soturon_sjis.dvi

tn_soturon_sjis.dvi 3D 2005 3 A Graduation Thesis of College of Engineering, Chubu University Evaluation of Usability in Movement Operation for 3D Object Tetsushi Nakagawa 1 1 2 3 2.1... 3 2.2... 4 3 Zoo 7 3.1 Zoo... 7 3.2

More information

<4D F736F F D B B83578B6594BB2D834A836F815B82D082C88C60202E646F63>

<4D F736F F D B B83578B6594BB2D834A836F815B82D082C88C60202E646F63> デザイン言語 Processing 入門 サンプルページ この本の定価 判型などは, 以下の URL からご覧いただけます. http://www.morikita.co.jp/books/mid/084931 このサンプルページの内容は, 初版 1 刷発行当時のものです. Processing Ben Fry Casey Reas Windows Mac Linux Lesson 1 Processing

More information

Java演習(6) -- 条件分岐 --

Java演習(6)   -- 条件分岐 -- (400, 300) 20 if-else (Stripe.java) import javax.swing.japplet; import java.awt.graphics; import java.awt.color; public class Stripe extends JApplet { public void paint(graphics g) { g.setcolor(color.white);

More information

19 3!! (+) (>) (++) (+=) for while 3.1!! (20, 20) (1)(Blocks1.java) import javax.swing.japplet; import java.awt.graphics;

19 3!! (+) (>) (++) (+=) for while 3.1!! (20, 20) (1)(Blocks1.java) import javax.swing.japplet; import java.awt.graphics; 19 3!!...... (+) (>) (++) (+=) for while 3.1!! 3.1.1 50 20 20 5 (20, 20) 3.1.1 (1)(Blocks1.java) public class Blocks1 extends JApplet { public void paint(graphics g){ 5 g.drawrect( 20, 20, 50, 20); g.drawrect(

More information

アプレットの作成

アプレットの作成 - 1 - import java.applet.applet; import java.awt.graphics; public class HelloWorld extends Applet { public void init() { resize(150,60) ; public void paint ( Graphics g ) { g.drawstring("hello, world!",

More information

r3.dvi

r3.dvi 00 3 2000.6.10 0 Java ( 7 1 7 1 GSSM 1? 1 1.1 4 4a 4b / / 0 255 HTML X 0 255 16 (0,32,255 #0020FF Java xclock -bg #0020FF xclock ^C (Control C xclock 4c 1 import java.applet.applet; import java.awt.*;

More information

課題

課題 colormode(hsb,359,99,99); background(0,0,99); s = 99; x = mousex; y = mousey; nostroke(); while(s >= 0 && (0

More information

1 1 1........................... 1 2........... 1 3........................... 4 4.............. 6 2 7 1...................... 7 2........................... 8 3............................ 8 4...............

More information

Applet java.lang.object java.awt.component java.awt.container java.awt.panel java.applet.applet

Applet java.lang.object java.awt.component java.awt.container java.awt.panel java.applet.applet 13 Java 13.9 Applet 13.10 AppletContext 13.11 Applet java.lang.object java.awt.component java.awt.container java.awt.panel java.applet.applet Applet (1/2) Component GUI etc Container Applet (2/2) Panel

More information

Local variable x y i paint public class Sample extends Applet { public void paint( Graphics gc ) { int x, y;... int i=10 ; while ( i < 100 ) {... i +=

Local variable x y i paint public class Sample extends Applet { public void paint( Graphics gc ) { int x, y;... int i=10 ; while ( i < 100 ) {... i += Safari AppletViewer Web HTML Netscape Web Web 13-1 Applet Web Applet init Web paint Web start Web HTML stop destroy update init Web paint start Web update Event Driven paint Signature Overwriting Overriding

More information

B02-095 2007 2 15 1 3 2 4 2.1............................. 4 2.2........................................ 5 2.3........................................ 6 3 7 3.1................................. 7 3.2..............................

More information

入門Java解答.doc

入門Java解答.doc //2 1Mon2_1.java package moji; import java.awt.*; import java.awt.event.*; import java.applet.*; public class Mon2_1 extends Applet { public void paint(graphics g){ } g.drawstring("java ", 100, 100); g.drawstring("",

More information

AWT setcolor, drawstring Java AWT Abstract Window Toolkit Graphics AWT import import java.awt.* ; // AWT Graphics import java.awt.graphics; // AWT Gra

AWT setcolor, drawstring Java AWT Abstract Window Toolkit Graphics AWT import import java.awt.* ; // AWT Graphics import java.awt.graphics; // AWT Gra AWT setcolor, drawstring Java AWT Abstract Window Toolkit Graphics AWT import // AWT Graphics import java.awt.graphics; // AWT Graphics paint g x y ( x, y ) drawline( x, y, x, y ) ; g.drawline( 20, 30,

More information

AWT setcolor, drawstring Java AWT Abstract Window Toolkit Graphics AWT import import java.awt.* ; // AWT Graphics import java.awt.graphics; // AWT Gra

AWT setcolor, drawstring Java AWT Abstract Window Toolkit Graphics AWT import import java.awt.* ; // AWT Graphics import java.awt.graphics; // AWT Gra AWT setcolor, drawstring Java AWT Abstract Window Toolkit Graphics AWT import // AWT Graphics import java.awt.graphics; // AWT Graphics paint g x y ( x, y ) drawline( x, y, x, y ) ; g.drawline( 20, 30,

More information

p000表紙.eps

p000表紙.eps INDEX P1 P5 Adobe Photoshop P7 Adobe Illustrator P21 CONTENTS 1 2 3 4 5 6 CONTENTS Adobe Photoshop 7 Adobe Photoshop 8 Adobe Photoshop 9 Adobe Photoshop 10 Adobe Photoshop 11 Adobe Photoshop 12 Adobe Photoshop

More information

2 p.2 2 Java Hello0.class JVM Hello0 java > java Hello0.class Hello World! javac Java JVM java JVM : Java > javac 2> Q Foo.java Java : Q B

2 p.2 2 Java Hello0.class JVM Hello0 java > java Hello0.class Hello World! javac Java JVM java JVM : Java > javac 2> Q Foo.java Java : Q B 2 p.1 2 Java Java JDK Sun Microsystems JDK javac Java java JVM appletviewer IDESun Microsystems NetBeans, IBM 1 Eclipse 2 IDE GUI JDK Java 2.1 Hello World! 2.1.1 Java 2.1.1 Hello World Emacs Hello0.java

More information

Adobe Bridge Bridge Bridge Bridge P10 Bridge Finder 2

Adobe Bridge Bridge Bridge Bridge P10 Bridge Finder 2 Adobe InDesign InDesign PDF Flash Web CD DVD Adobe Campus Day Adobe Campus Day Adobe Campus Day 1 Adobe Bridge Bridge Bridge Bridge P10 Bridge Finder 2 InDesign InDesign... Web............ 3 POINT InDesign

More information

r6.dvi

r6.dvi I 2005 6 2005.11.18 1 1.1 2 Hello, World public class r5ex2 extends JApplet { Font fn = new Font("Helvetica", Font.BOLD, 24); g2.setfont(fn); for(int i = 0; i < 10; ++i) { g2.setpaint(new Color(100+i*5,

More information

line(x1, y1, x2, y2); (x1, y1) rect(x, y, width, height); (x, y) (x1, y1) (x2, y2) height width (x2, y2) ellipse(x, y, width, height); rectmode(corners); rect(x1, y1, x2, y2); (x,y) width height strokeweight(4);

More information

Safari AppletViewer Web HTML Netscape Web Web 15-1 Applet Web Applet init Web paint Web start Web HTML stop destroy update init Web paint start Web up

Safari AppletViewer Web HTML Netscape Web Web 15-1 Applet Web Applet init Web paint Web start Web HTML stop destroy update init Web paint start Web up Safari AppletViewer Web HTML Netscape Web Web 15-1 Applet Web Applet init Web paint Web start Web HTML stop destroy update init Web paint start Web update Event Driven paint Signature Overwriting Overriding

More information

KeyListener init addkeylistener addactionlistener addkeylistener addkeylistener( this ); this.addkeylistener( this ); KeyListener public void keytyped

KeyListener init addkeylistener addactionlistener addkeylistener addkeylistener( this ); this.addkeylistener( this ); KeyListener public void keytyped KeyListener keypressed(keyevent e) keyreleased(keyevent e) keytyped(keyevent e) MouseListener mouseclicked(mouseevent e) mousepressed(mouseevent e) mousereleased(mouseevent e) mouseentered(mouseevent e)

More information

任意の加算プログラム

任意の加算プログラム HP Java CG Java Graphics CG CG CG paint CG CG paint CG paint Windows paint paint 17 // public Frame1() { enableevents(awtevent.window_event_mask); try { jbinit(); catch(exception e) { e.printstacktrace();

More information

1 1 2 1 1............ 1 2............ 4 3 6 1............... 6 2............... 8 3.............. 9 4 12 1..................... 12 2..................

1 1 2 1 1............ 1 2............ 4 3 6 1............... 6 2............... 8 3.............. 9 4 12 1..................... 12 2.................. 1 1 2 1 1............ 1 2............ 4 3 6 1............... 6 2............... 8 3.............. 9 4 12 1..................... 12 2........................ 14 5 15 6 20 1.............. 20 2..............

More information

24 Boid

24 Boid 24 Boid 200902854 1 1 4 1.1............................... 4 1.2............................... 5 1.3.............................. 5 2 6 2.1.................... 6 2.1.1.......................... 6 2.1.2.........................

More information

pp2018-pp4base

pp2018-pp4base プログラミング入門 Processing プログラミング第 4 回 九州産業大学理工学部情報科学科神屋郁子 ( pp@is.kyusan-u.ac.jp ) 時限 クラス 水 1 機械 ( クラス 3) 水 2 機械 ( クラス 1) 水 4 電気 (B1 B2) 後ろ 5 列は着席禁止 3 人掛けの中央は着席禁止 第 4 回の内容 前回の質問への回答 マウスの操作と図形の描画 : メソッド 小テスト

More information

橡告改.PDF

橡告改.PDF JAVA e 14 2 7 3 1-1 3 1-2 3 1-3 4 e 4 2-1 4 2-2 6 2-3 7 2-4 14 2-5 18 Java 19 3-1 Java 19 3-2 e 21 3-3 22 33 34 35 2 1-1 e 2000 American Society for Training Development e e e IT e e e 2003 e 5 2500 [1]

More information

BASIC / / BA- SIC Web 1/10 1/10 / / JavaScript

BASIC / / BA- SIC Web 1/10 1/10 / / JavaScript BASIC / / BA- SIC Web 1/10 1/10 // JavaScript MIT Processing line(10,10,100,100); 1 BASIC / Phidgets 1 GAINER 2 USB / Phidgets USB 1: 1 http://www.phidgets.com/ 2 http://gainer.cc/ / / BGM Phidgets University

More information

Java演習(9) -- クラスとメソッド --

Java演習(9)   -- クラスとメソッド -- Java (9) Java (9) Java (9) 3 (x, y) x 1 30 10 (0, 50) 1 2 10 10 (width - 10, 80) -2 3 50 10 (width / 2, 110) 2 width 3 (RectMove4-1.java) import javax.swing.japplet; import javax.swing.timer; import java.awt.graphics;

More information

Java演習(2) -- 簡単なプログラム --

Java演習(2)   -- 簡単なプログラム -- Java public class Hello Hello (class) (field)... (method)... Java main Hello World(Hello.java) public class Hello { public static void main(string[ ] args) { public() (package) Hello World(Hello.java)

More information

Chapter JDK KeyListener keypressed(keyevent e ) keyreleased(keyevent e ) keytyped(keyevent e ) MouseListener mouseclicked(mouseeven

Chapter JDK KeyListener keypressed(keyevent e ) keyreleased(keyevent e ) keytyped(keyevent e ) MouseListener mouseclicked(mouseeven Chapter 11. 11.1. JDK1.1 11.2. KeyListener keypressed(keyevent e ) keyreleased(keyevent e ) keytyped(keyevent e ) MouseListener mouseclicked(mouseevent e ) mousepressed(mouseevent e ) mousereleased(mouseevent

More information

No 1 p3 2 P4 3 P5 4 P6 5 P7 6 P8 7 P9 8 P10 9 P11 10 80 PR Web P12 11 Blender DCG P13 12 P14 13 QR P15 14 P16 15 P17 16 Flash Web P18 17 Flash ActionScript P19 18 MML DTM P20 19 JAVA P21 i-appli 20 Flash

More information

fiš„v5.dvi

fiš„v5.dvi (2001) 49 2 293 303 VRML 1 2 3 2001 4 12 2001 10 16 Web Java VRML (Virtual Reality Modeling Language) VRML Web VRML VRML VRML VRML Web VRML VRML, 3D 1. WWW (World Wide Web) WWW Mittag (2000) Web CGI Java

More information

Processingをはじめよう

Processingをはじめよう Processing をはじめよう 第 5 章 反応 目次 繰り返されるdrawと一度だけのsetup 追いかける クリック カーソルの位置 キーボードからの入力 マッピング Robot 3: Response 繰り返される draw と一度だけの setup Example 5-1 draw() 関数 println("i'm drawing"); println(framecount); draw()

More information

2 p.2 2 Java Hello0.class JVM Hello0 java > java Hello0.class Hello World! javac Java JVM java JVM : Java > javac 2> Q Foo.java Java : Q B

2 p.2 2 Java Hello0.class JVM Hello0 java > java Hello0.class Hello World! javac Java JVM java JVM : Java > javac 2> Q Foo.java Java : Q B 2 p.1 2 Java Java JDK Sun Microsystems Oracle JDK javac Java java JVM appletviewer IDESun Microsystems NetBeans, IBM 1 Eclipse 2 IDE GUI JDK Java 2.1 Hello World! 2.1.1 Java 2.1.1 Hello World Emacs Hello0.java

More information

(new) (Opens) Processing (Saves) (Exports) Java Java HTML Getting Started with Processing Casey Reas and Ben Fry. Processing: A Programming Handbook for Visual Designers and Artists Casey Reas and Ben

More information

Java演習(4) -- 変数と型 --

Java演習(4)   -- 変数と型 -- 50 20 20 5 (20, 20) O 50 100 150 200 250 300 350 x (reserved 50 100 y 50 20 20 5 (20, 20) (1)(Blocks1.java) import javax.swing.japplet; import java.awt.graphics; (reserved public class Blocks1 extends

More information

<4D F736F F D20566F F6E658C6791D FE382C582CC4A D834F E F8F4390B394C52E646F63>

<4D F736F F D20566F F6E658C6791D FE382C582CC4A D834F E F8F4390B394C52E646F63> imai@eng.kagawa-u.ac.jp (Tel: 087-864-2244(FAX )) Vodafone( J-Phone) (J-SA51 090-2829-9999) JavaTM ( Vappli ) SUN ( SUN ) Java2SE(J2SDK1.3.1 Java Standard Edition) Java2MEforCLDC(WTK1.04 Wireless Tool

More information

10K pdf

10K pdf #1 #2 Java class Circle { double x; // x double y; // y double radius; // void set(double tx, double ty){ x = tx; y = ty; void set(double tx, double ty, double r) { x = tx; y = ty; radius = r; // Circle

More information

Networking Semester 802.3

Networking Semester 802.3 Networking Semester 802.3 2 ) ( Computer Hardware () () () () () () () () ()- () () () () () BIOS () Computer Software Operating Systems Windows, Linux Linux Windows OS I 1.C 2. 3. 3-1.main 3-2.printf

More information

Java 2 p.2 2 Java Hello0.class JVM Hello0 java > java Hello0.class Hello World! javac Java JVM java JVM : Java > javac 2> Q Foo.java Java : Q 2.

Java 2 p.2 2 Java Hello0.class JVM Hello0 java > java Hello0.class Hello World! javac Java JVM java JVM : Java > javac 2> Q Foo.java Java : Q 2. Java 2 p.1 2 Java Java JDK Sun Microsystems Oracle JDK javac Java java JVM appletviewer IDE Sun Microsystems NetBeans, IBM 1 Eclipse 2 IDE GUI JDK Java 2.1 Hello World! 2.1.1 Java 2.1.1 Hello World Emacs

More information

paper.pdf

paper.pdf Cop: Web 1,a) 1,b) GUI, UI,,., GUI, Java Swing., Web HTML CSS,. CSS,, CSS,.,, HTML CSS Cop. Cop, JavaScript,,. Cop, Web,. Web, HTML, CSS, JavaScript, 1., GUI, Web., HTML CSS (UI), JavaScript, Web GUI.

More information

コンピュータグラフィックス - 第4回 色彩の表現

コンピュータグラフィックス - 第4回 色彩の表現 .. 4 2013 10 9 ( ) 2013 10 9 1 / 22 3 3 3 ( ) 2013 10 9 2 / 22 380 nm 780 nm 1 nm = 10 9 m ( ) 2013 10 9 3 / 22 3 3 (S M L ) 3 3 3 ( ) 2013 10 9 4 / 22 加法混色 光の 3 原色を組み合わせることで 様々な色を表現できる 光を重ねて別の色を作ることを加法混色と呼ぶ

More information

15 Java 15.5 15.6 15.7 Checkbox() Checkbox(String str) Checkbox(String str, boolean state) Checkbox(String str, boolean state, CheckboxGroup grp) Checkbox(String str, CheckboxGroup grp, boolean state)

More information

CONTENTS 1 2 2 5 3 8 4 9 5 18 6 20 7 27 8 31 9 Web 33 10 36 11 37 12 39 2

CONTENTS 1 2 2 5 3 8 4 9 5 18 6 20 7 27 8 31 9 Web 33 10 36 11 37 12 39 2 USER'S MANUAL CONTENTS 1 2 2 5 3 8 4 9 5 18 6 20 7 27 8 31 9 Web 33 10 36 11 37 12 39 2 1 Internet Explorer 6.0 DHTML Flash Flash 2 Web Web FTP Web Windows Windows Windows Windows 100 OS CPU HDD DOS/V

More information

G-XML

G-XML G-XML PreSerV for WebG-XML G-XML i 1... 3 1.1 G-XML... 3 1.2... 3 1.3... 4 1.4... 5 2 G-XML... 6 2.1... 6 2.2... 8 2.2.1... 9 2.2.2...13 2.2.3...14 2.2.4...16 2.2.5...16 2.3...17 2.3.2...17 2.3.3...17

More information

< F2D E E6A7464>

< F2D E E6A7464> ピタゴラス数 [Java アプレット ] [Java アプリケーション ] 1. はじめに 2 2 2 三平方の定理 a +b =c を満たす3つの自然数の組 ( a, b, c) をピタゴラス数と言います ピタゴラス数の最も簡単な例として (3,4,5) がありますね このピタゴラス数を求めるには ピタゴラスの方法とプラトンの方法の2つの方法があります 2 2 ピタゴラス数 (a,b,c) に対して

More information

No 1 Flash p3 2 Flash ActionScript p4 3 MS-Access p5 4 p6 5 p7 6 MS-Access p8 7 IllustratorPhotoshop p9 Illustrator 80 8 p10 CSS 9 JavaScript p11 Web

No 1 Flash p3 2 Flash ActionScript p4 3 MS-Access p5 4 p6 5 p7 6 MS-Access p8 7 IllustratorPhotoshop p9 Illustrator 80 8 p10 CSS 9 JavaScript p11 Web No 1 Flash p3 2 Flash ActionScript p4 3 MS-Access p5 4 p6 5 p7 6 MS-Access p8 7 IllustratorPhotoshop p9 Illustrator 80 8 p10 CSS 9 JavaScript p11 Web 10 DTP 80 p12 11 Flash CM p13 2 Flash 3118 Photoshop

More information

2 1 Web Java Android Java 1.2 6) Java Java 7) 6) Java Java (Swing, JavaFX) (JDBC) 7) OS 1.3 Java Java

2 1 Web Java Android Java 1.2 6) Java Java 7) 6) Java Java (Swing, JavaFX) (JDBC) 7) OS 1.3 Java Java 1 Java Java 1.1 Java 1) 2) 3) Java OS Java 1.3 4) Java Web Start Web / 5) Java C C++ Java JSP(Java Server Pages) 1) OS 2) 3) 4) Java Write Once, Run Anywhere 5) Java Web Java 2 1 Web Java Android Java

More information

C:/Temp/magicpot.dvi

C:/Temp/magicpot.dvi The Magic Cauldron Eric S. Raymond : 1999/06/25 22:48:58 1999/07/02 9 2 7 1 1 2 2 3 3 4 6 5 7 6 9 7 10 7.1 Apache : : : : : : : : : : : : : : : : : : : : : : : : : : 10 7.2 Cisco : : : : : : : : : : :

More information

. IDE JIVE[1][] Eclipse Java ( 1) Java Platform Debugger Architecture [5] 3. Eclipse GUI JIVE 3.1 Eclipse ( ) 1 JIVE Java [3] IDE c 016 Information Pr

. IDE JIVE[1][] Eclipse Java ( 1) Java Platform Debugger Architecture [5] 3. Eclipse GUI JIVE 3.1 Eclipse ( ) 1 JIVE Java [3] IDE c 016 Information Pr Eclipse 1,a) 1,b) 1,c) ( IDE) IDE Graphical User Interface( GUI) GUI GUI IDE View Eclipse Development of Eclipse Plug-in to present an Object Diagram to Debug Environment Kubota Yoshihiko 1,a) Yamazaki

More information

Web

Web Web 1 1 1........................... 1 2 Web...................... 1 3...................... 3 4........................ 4 5........................... 5 i............................ 5 ii iii..........................

More information

PrintWalker/LXE インストールガイド

PrintWalker/LXE インストールガイド PrintWalker/LXE V16L20 1 2 PrintWalker/LXE V16L20 for Red Hat Enterprise Linux (for x86) Linux Linus Torvalds Red Hat RPM Red Red Hat, Inc. Common UNIX Printing System CUPS Apple Inc. UNIX Microsoft Windows

More information

rzat10pdf.ps

rzat10pdf.ps IBM i 7.2 IBM Navigator for i IBM IBM i 7.2 IBM Navigator for i IBM 9 IBM i 7.2 ( 5770-SS1) RISC CISC IBM IBM i Version 7.2 Connecting to your system Connecting to IBM Navigator for i Copyright IBM Corporation

More information

2 p.2 2 Java Hello0.class JVM Hello0 java > java Hello0.class Hello World! javac Java JVM java JVM : Java > javac 2> Q Foo.java Java : Q B

2 p.2 2 Java Hello0.class JVM Hello0 java > java Hello0.class Hello World! javac Java JVM java JVM : Java > javac 2> Q Foo.java Java : Q B 2 p.1 2 Java Java JDK Sun Microsystems Oracle JDK javac Java java JVM appletviewer IDESun Microsystems NetBeans, IBM 1 Eclipse 2 IDE GUI JDK Java 2.1 Hello World! 2.1.1 Java 2.1.1 Hello World Emacs Hello0.java

More information

FUJITSU Network Si-R Si-R Gシリーズ Webユーザーズガイド

FUJITSU Network Si-R Si-R Gシリーズ Webユーザーズガイド P3NK-4582-03Z0 Si-R G Web Web FUJITSU Network Si-R FUJITSU Network Si-R Si-R G Si-R brin Web V2 LAN 2012 3 2013 3 2 2014 11 3 Microsoft Corporation Copyright FUJITSU LIMITED 2012-2014 2 ... 2...5...5...5...6...7

More information

untitled

untitled Java 1 1 Java 1.1 Java 1.2 Java JavaScript 2 2.1 2.2 2.3 Java VM 3 3.1 3.2 3.3 3.4 4 Java 4.1 Java 4.2 if else 4.3 switch case 4.4 for 4.5 while 4.6 do-while 4.7 break, continue, return 4.8 try-catch-finally

More information

< F2D89BA8EE882C E6A7464>

< F2D89BA8EE882C E6A7464> 下手な鉄砲も数撃ちゃ当たる!! [Java アプレット ] [Java アプリケーション ] 1. はじめに 鉄砲を10 回撃つと1 回当たる腕前の人が鉄砲を撃ちます 下枠の [ 自動 10 回 ] または [ 自動 50 回 ] または [ 自動 100 回 ] をクリックすると それぞれ10 回 50 回 100 回 実験を繰り返します ただし 1 回の実験につき20 発の鉄砲を発射します シミュレーションソフト

More information

1 1 2 Unix 1 3 4 4 SVG 6 4.1 SVG................................... 6 4.2 SVG......................... 6 4.3 SVG.............................. 7 4.4..

1 1 2 Unix 1 3 4 4 SVG 6 4.1 SVG................................... 6 4.2 SVG......................... 6 4.3 SVG.............................. 7 4.4.. WWW 17 2 10 1 1 2 Unix 1 3 4 4 SVG 6 4.1 SVG................................... 6 4.2 SVG......................... 6 4.3 SVG.............................. 7 4.4................................. 8 4.5...........................

More information

r2.dvi

r2.dvi 2 /Fitzz 2012.10.16 1 Reading 1.1 HCI bit ( ) HCI ( ) ( ) ( ) HCI ( ) HCI ( ) ^_^; 1 1.2,,!,, 2000 1.3 D. A.,,?,, 1990 1? 1 (interface) ( ) ( / ) (User Interface, UI) 2 :? import java.awt.*; import java.awt.event.*;

More information

untitled

untitled Visual Basic.NET 1 ... P.3 Visual Studio.NET... P.4 2-1 Visual Studio.NET... P.4 2-2... P.5 2-3... P.6 2-4 VS.NET(VB.NET)... P.9 2-5.NET... P.9 2-6 MSDN... P.11 Visual Basic.NET... P.12 3-1 Visual Basic.NET...

More information

pp Word Excel PowerPoint Microsoft Word Excel PowerPoint Word Excel PowerPoint a 201

pp Word Excel PowerPoint Microsoft Word Excel PowerPoint Word Excel PowerPoint a 201 計量国語学 アーカイブ ID KK300303 種別 解説 タイトル データの視覚化 (3) Word Excel PowerPointを用いた作図 Title Data Visualization (3): Constructing Graphs in Microsoft Word, Excel and PowerPoint 著者 田中祐輔 Author TANAKA Yusuke 掲載号 30

More information

Java 3 p.2 3 Java : boolean Graphics draw3drect fill3drect C int C OK while (1) int boolean switch case C Calendar java.util.calendar A

Java 3 p.2 3 Java : boolean Graphics draw3drect fill3drect C int C OK while (1) int boolean switch case C Calendar java.util.calendar A Java 3 p.1 3 Java Java if for while C 3.1 if Java if C if if ( ) 1 if ( ) 1 else 2 1 1 2 2 1, 2 { Q 3.1.1 1. int n = 2; if (n

More information

ユーザーガイド

ユーザーガイド PRS-350 2010 Sony Corporation 4-257-507-02(1) 2 49 51 55 58 66 68 70 73 75 63 65 76 78 79 89 92 95 4 102 107 116 111 114 83 147 24 5 ...7...8...13...16...18...19...21...24 11 81 3 OPTIONS 70 7 * 1 * 2

More information

G-XML EWEB-3K-N064

G-XML EWEB-3K-N064 G-XML EWEB-3K-N064 PreSerV for Web G-XML i 1... 1 1.1 G-XML... 1 1.2... 2 1.2.1 PreSerV for Web... 2 1.2.2 G-XML... 2 1.2.3 SVG... 2 2 G-XML... 3 2.1 G-XML... 3 2.2... 4 2.3... 4 3... 6 3.1... 6 3.2...

More information

BlueJ 2.0.1 BlueJ 2.0.x Michael Kölling Mærsk Institute University of Southern Denmark Toin University of Yokohama Alberto Palacios Pawlovsky 17 4 4 3 1 5 1.1 BlueJ.....................................

More information

...h.book

...h.book OCR OCR OCR OCR OCR 2004 1 MicrosoftWindowsWindows NT Microsoft Corporation Netscape Netscape Communications Corporation Yahoo! JAPANhttp://www.yahoo.co.jp/ Microsoft Corporation OCR i Multilingual OCR

More information

10/ / /30 3. ( ) 11/ 6 4. UNIX + C socket 11/13 5. ( ) C 11/20 6. http, CGI Perl 11/27 7. ( ) Perl 12/ 4 8. Windows Winsock 12/11 9. JAV

10/ / /30 3. ( ) 11/ 6 4. UNIX + C socket 11/13 5. ( ) C 11/20 6. http, CGI Perl 11/27 7. ( ) Perl 12/ 4 8. Windows Winsock 12/11 9. JAV tutimura@mist.i.u-tokyo.ac.jp kaneko@ipl.t.u-tokyo.ac.jp http://www.misojiro.t.u-tokyo.ac.jp/ tutimura/sem3/ 2002 12 11 p.1/33 10/16 1. 10/23 2. 10/30 3. ( ) 11/ 6 4. UNIX + C socket 11/13 5. ( ) C 11/20

More information

< F2D82518E9F8AD CC834F CC8CFC82AB82C68D4C>

< F2D82518E9F8AD CC834F CC8CFC82AB82C68D4C> 2 次関数のグラフの向きと広がり [Java アプレット ] [Java アプリケーション ] 1. はじめに 2 2 y=ax のグラフについて x の係数 aが正のときと負のときでは グラフにどのような違いがあるでしょうか 2 2 y=ax のグラフについて x の係数 aが正のとき 係数 aの値が大きくなるにつれて グラフの広がりはどうなるでしょうか 2 2 y=ax のグラフについて x の係数

More information

07_経営論集2010 小松先生.indd

07_経営論集2010 小松先生.indd 19 1 2009 105 123 Web Web Web Web World Wide Web WWW OS 1990 WWW Web HTML CSS JavaScript Web 1 WWW 2 Web Web 3 Web 4 HTML5 5 Web Web 3 1970 WWW HTML Web WWW WWW WWW WWW WWW 105 Web WWW 2 Web 1 1 NTT NTT

More information

1 1.1 PC PC PC PC PC workstation PC hardsoft PC PC CPU 1 Gustavb, Wikimedia Commons.

1 1.1 PC PC PC PC PC workstation PC hardsoft PC PC CPU 1 Gustavb, Wikimedia Commons. 1 PC PC 1 PC PC 1 PC PC PC PC 1 1 1 1.1 PC PC PC PC PC workstation PC 1.1.1 hardsoft 1.1.2 PC PC 1.1 1 1. 2. 3. CPU 1 Gustavb, Wikimedia Commons.http://en.wikipedia.org/wiki/Image:Personal_computer,_exploded_5.svg

More information

Oracle_for_SAP :29 PM ページ 2 2 3

Oracle_for_SAP :29 PM ページ 2 2 3 Oracle_for_SAP のコピー 04.5.28 0:55 PM ページ 1 Oracle for SAP Release Matrix Oracle for SAP Release Matrix SAP R/3 Version 3.1I, 4.0B, 4.5B, 4.6B: 8.1.7 32-bit: Intel NT/Windows2000/XP, Intel Linux, IBM AIX,

More information

Chapter 20. [ ] ; [ ] = new [ ] ; Color colors [ ] = new Color[ 20 ]; // 20 Button operations [ ] = new Button[ 10 ]; // 10 colors[ 3 ] = new Color( 1

Chapter 20. [ ] ; [ ] = new [ ] ; Color colors [ ] = new Color[ 20 ]; // 20 Button operations [ ] = new Button[ 10 ]; // 10 colors[ 3 ] = new Color( 1 Chapter 20. [ ] ; [ ] = new [ ] ; Color colors [ ] = new Color[ 20 ]; // 20 Button operations [ ] = new Button[ 10 ]; // 10 colors[ 3 ] = new Color( 10, 30, 40 ); gc.setcolor( colors[ 3 ] ); operations[

More information

Chapter 19. init paint actionperformed init if Subroutine Function init paint ( ) { } ( ) void public void init( ) { } init void void public Copyright

Chapter 19. init paint actionperformed init if Subroutine Function init paint ( ) { } ( ) void public void init( ) { } init void void public Copyright Chapter 19. init paint actionperformed init if Subroutine Function init paint ( ) { ( ) void public void init( ) { init void void public Copyright by Tatsuo Minohara 2005 Rev. C 2005 Jan. 13th Macintosh

More information

IPSJ SIG Technical Report Vol.2012-IS-119 No /3/ Web A Multi-story e-picture Book with the Degree-of-interest Extraction Function

IPSJ SIG Technical Report Vol.2012-IS-119 No /3/ Web A Multi-story e-picture Book with the Degree-of-interest Extraction Function 1 2 2 3 4 2 Web A Multi-story e-picture Book with the Degree-of-interest Extraction Function Kunimichi Shibata, 1 Masakuni Moriyama, 2 Kazuhide Yukawa, 2 Koji Ueno, 3 Kazuo Takahashi 4 and Shigeo Kaneda

More information

Copyright 2009 Sun Microsystems, Inc Network Circle, Santa Clara, CA U.S.A. All rights reserved. Sun Microsystems, Inc. ( Sun Microsystems

Copyright 2009 Sun Microsystems, Inc Network Circle, Santa Clara, CA U.S.A. All rights reserved. Sun Microsystems, Inc. ( Sun Microsystems Sun Ultra 27 Linux Solaris Sun Microsystems, Inc. 4150 Network Circle Santa Clara, CA 95054 U.S.A. Part No: 821 0162 10 2009 3 Revision A Copyright 2009 Sun Microsystems, Inc. 4150 Network Circle, Santa

More information

Windows Macintosh 18 Java Windows 21 Java Macintosh

Windows Macintosh 18 Java Windows 21 Java Macintosh 2 2 2 6 6 6 12 16 17 18 Windows Macintosh 18 Java Windows 21 Java Macintosh 23 25 26 26 27 33 34 40 48 55 57 60 Sun Sun Microsystems Java Java Sun Microsystems, Inc. Microsoft Windows Windows Microsoft

More information

Cosminexus Application Designer操作ガイド

Cosminexus Application Designer操作ガイド Cosminexus Application Designer 3020-3-M91 OS Windows Server 2003 Windows Server 2003 R2 Windows XP Windows Vista P-2443-7E74 ucosminexus Developer Standard 07-50 P-2443-7F74 ucosminexus Developer Professional

More information

課題

課題 size(300,120); void drawrect(float x,float y,float w,float h,color c){ rectmode(corner); stroke( (a) ); fill( (b) ); rect( (c), (d), (e), (f) ); float x = map(hour(), (g), (h), (i), (j) ); drawrect(0,0,x,height/3,color(

More information

Processing入門マニュアル17

Processing入門マニュアル17 20. 連続したベジェ曲線を描く beginshape(); beziervertex(x座標, y座標); endshape(); ベジェ曲線を連続して描くためにはbezierVertex命令をbeginShapeとendShape命令の間に記述します ( C1x, C1y ) ( V1x, V1y ) ( V2x, V2y ) ( C2x, C2y ) ( C3x, C3y ) ( C6x, C6y

More information

< F2D B825082CC96E291E82E6A7464>

< F2D B825082CC96E291E82E6A7464> 3x+1 の問題 [Java アプレット ] [Java アプリケーション ] 1. はじめに どんな自然数から始めても良いので その数が偶数ならば2で割り 奇数ならば3 倍して1を加えることを繰り返します そうすると どんな自然数から始めても必ず1になるというのはほんとうなのでしょうか 例えば 11から始めると 11 34 17 52 26 13 40 20 10 5 16 8 4 2 1 となります

More information

< F2D A839382CC906A2E6A7464>

< F2D A839382CC906A2E6A7464> ビュホンの針 1. はじめに [Java アプレット ] [Java アプリケーション ] ビュホン ( Buffon 1707-1788) は 針を投げて円周率 πを求めることを考えました 平面上に 幅 2aの間隔で 平行線を無数に引いておきます この平面上に長さ2bの針を落とすと この針が平行線と交わる確立 pは p=(2b) (aπ) 1 となります ただし b

More information

Java言語 第1回

Java言語 第1回 Java 言語 第 8 回ウインドウ部品を用いる (1) 知的情報システム工学科 久保川淳司 kubokawa@me.it-hiroshima.ac.jp 前回の課題 (1) マウスを使って, 前回課題で作成した 6 4 のマスの図形で, \ をマウスクリックによって代わるようにしなさい 前回の課題 (2) import java.applet.applet; import java.awt.*;

More information

Microsoft PowerPoint prog1_doc2x.pptx

Microsoft PowerPoint prog1_doc2x.pptx アプレット public class extends Applet { public void paint(graphics g) { // アプレット描画 g.drawstring( Hello World, 10, 20 ); page 1 アプレット : 色 public class extends Applet { Color col; // カラークラス int red, grn, blu;

More information

,,,,., C Java,,.,,.,., ,,.,, i

,,,,., C Java,,.,,.,., ,,.,, i 24 Development of the programming s learning tool for children be derived from maze 1130353 2013 3 1 ,,,,., C Java,,.,,.,., 1 6 1 2.,,.,, i Abstract Development of the programming s learning tool for children

More information

課題

課題 float xball;// 円の中心の X 座標 float yball; // 円の中心の Y 座標 float rball; // 円の半径 color cball; // 円の色 // 円を移動させる void updateball(){ yball -= 1; if(yball+rball< 0){ yball = height+rball; // 円を描く void drawball(){

More information

untitled

untitled 101-00512-6-4 DTP Web 2317 40 44 10 23 1,825 Windows XP Macintosh (OS9) Macintosh (OSX) SCREEN SG-8060 MarkII SCREEN SF-C5000PU SCREEN SF-C500RF SCREEN Gena Scan5500 Genasett 3075(B2) Digital Konsensus

More information

4-1. html css html 046 11 12 ht tp ht tp html HyperTex t Markup Language: html <meta ht tp - equiv="content-type" content=" tex t /html; charset=utf-

4-1. html css html 046 11 12 ht tp ht tp html HyperTex t Markup Language: html <meta ht tp - equiv=content-type content= tex t /html; charset=utf- 4.html css html css Adobe Flash JavaScript xml Ajax html css 045 11 12 4-1. html css html 046 11 12 ht tp ht tp html HyperTex t Markup Language: html

More information

r4.dvi

r4.dvi 00 4 2000.6.24 0 GUI GUI GUI GUI 1 1.1 3 2 1 import java.applet.applet; import java.awt.*; public class r3ex2 extends Applet { Figure[] figs = new Figure[]{ new Circle(Color.blue, 100.0, 100.0, 30.0, 1.1,

More information

2 p.2 2 Java > javac Hello0.java Hello0.class JVM Hello0 java > java Hello0.class Hello World! javac Java JVM java JVM : Java > javac 2> Q Foo.j

2 p.2 2 Java > javac Hello0.java Hello0.class JVM Hello0 java > java Hello0.class Hello World! javac Java JVM java JVM : Java > javac 2> Q Foo.j 2 p.1 2 Java Java JDK Sun Microsystems Oracle JDK javac Java java JVM appletviewer IDESun Microsystems Oracle NetBeans, IBM 1 Eclipse 2, JetBrains IntelliJ IDEA IDE GUI JDK Java 2.1 Hello World! 2.1.1

More information

COOLPIX S01 Aiii vii A 0

COOLPIX S01 Aiii vii A 0 S01 Jp COOLPIX S01 Aiii vii A 0 ... i... iii... viii... 1... 5... 6... 7 8... 8... 8... 10... 12... 15... 16... 17... 19... 19... 20... 22... 23... 24... 25 AF... 27... 28 29... 29 1... 29... 30... 31...

More information

22 (266) / Web PF-Web Web Web Web / Web Web PF-Web Web Web Web CGI Web Web 1 Web PF-Web Web Perl C CGI A Pipe/Filter Architecture Based Software Gener

22 (266) / Web PF-Web Web Web Web / Web Web PF-Web Web Web Web CGI Web Web 1 Web PF-Web Web Perl C CGI A Pipe/Filter Architecture Based Software Gener 22 (266) / Web PF-Web Web Web Web / Web Web PF-Web Web Web Web CGI Web Web 1 Web PF-Web Web Perl C CGI A Pipe/Filter Architecture Based Software Generator PF-Web for Constructing Web Applications. Tomohiro

More information

58.pdf

58.pdf Swing MasatoshiKanamaru masatoshi-kanamaru@exa-corp.co.jp Web Web exa review Swing Web HTML Web GUI HTML GUI JavaScript HTML GUI VB Web JSP HTML HTML HTML Struts Web HTML HTML HTML AjaxJavaScript B2C Flash

More information

新しいイテレーション型開発

新しいイテレーション型開発 2 XAML WPF Windows Presentation Foundation 4 / 4 5 Silverlight 5 XAML 6 6 XAML 6 6 7 8 8 9 XAML 9 XAML 12 12 / / 13 / 14 15 XAML 15 Expression Blend 15 Visual Studio 2008 16 XAML 16 Microsoft Expression

More information

橡Webcamユーザーガイド03.PDF

橡Webcamユーザーガイド03.PDF Desktop On-Call Version 4 Webcam extension Pak for Windows Webcam extension Pak Desktop On-Call Version 4 Web PC i Desktop On-Call Version 4 PC PC Desktop On-Call Version 4 PC Windows 98 Windows 98SE Windows

More information

Processingをはじめよう

Processingをはじめよう Processing をはじめよう 第 7 章 動きその 2 目次 フレームレート スピードと方向 移動 回転 拡大 縮小 2 点間の移動 乱数 タイマー 円運動 今回はここまで 2 2 点間の移動 Example 7-6 (EX_08_06) 始点 (startx, starty) から終点 (stopx, stopy) まで移動する 座標更新の計算方法は後述 始点と終点を変更しても動作する 変更して確認

More information

0720

0720 DRM SNS WP WP UG Width of the Flash tag cloud Height of the Flash tag cloud Color of the tags 000000 Background color FFFFFF Use compatibility mode? WEB - HTML Color Names http://www.joomler.net/download/131-wordpress/890-wordpress-wp-cumulus-49kb.html

More information

try catch Exception Java try catch try { } catch ( Exception e ) { } e 16-1 try catch 0 try { int x = 0; int y = 10 / x; } catch ( Exception e ) { Sys

try catch Exception Java try catch try { } catch ( Exception e ) { } e 16-1 try catch 0 try { int x = 0; int y = 10 / x; } catch ( Exception e ) { Sys try catch Exception Java try catch catch ( Exception e ) { e 16-1 try catch 0 int x = 0; int y = 10 / x; catch ( Exception e ) { System.err.println( " " ); Copyright by Tatsuo Minohara 2004 Rev. C on Dec.

More information