자바 사인그래프
페이지 정보
작성일 19-06-17 21:07본문
Download : 자바 사인그래프.txt
import java.awt.Color;
import java.awt.Graphics;
import java.awt.Graphics2D;
import java.awt.image.BufferedImage;
import javax.swing.JApplet;
public class mung1 extends JApplet implements Runnable
{
final static int width = 628;
final static int height = 150;
static double angle = 0;
BufferedImage tempImage;
Graphics2D g2d;
int x0 = width/2;
int y0 = height/2;
Thread t;
public void init()
{
tempImage = new BufferedImage(628,150,BufferedImage.TYPE_INT_ARGB);
g2d = tempImage.createGraphics();
t = new Thread(this);
setSize(width,height);
this.setVisible(true);
this.setFocusable(true);
t.start();
}
public void run()
{
while(true)
{
try
{
Thread.sleep(20);
angle += Math.toRadians(8);
angle %= Math.toRadians(1080);
repaint();
}
catch(Exception e)
{
}
}
}
public void paint(Graphics g)
{
Color lightyellow = new Color(61,255,0);
Color black = new Color(255,255,51);
…(省略)
자바 사인그래프 , 자바 사인그래프기타레포트 , 자바 사인그래프
레포트/기타
자바 사인그래프
자바 사인그래프
Download : 자바 사인그래프.txt( 18 )
순서
설명
자바,사인그래프,기타,레포트
다.