

世の中寒すぎるが、俺のPCの中は熱いZE!!!
電源 | 【Owltech】 AURUM SERIES AU-700 |
CPU | 【Intel】 Core i7 920 |
メモリ | 【CFD】 DDR3 PC3-10600 |
M/B | 【GIGABYTE】 EX58-UD3R |
グラフィック | 【玄人志向】 Radeon HD 5770 |
HDD1 | 【Western Digital】 WD10EZEX |
HDD2 | 【Western Digital】 WD20EFRX |
BDドライブ | 【Pioneer】 BDR-207BK |
無線LAN | 【Intel】 Centrino Advanced-N 6205 For Desktop |
チューナー | 【アースソフト】 PT3 |
OS | Windows7 Professional 64bit |
#include <math.h> #include "DxLib.h" #define PI 3.1415926 int WINAPI WinMain(HINSTANCE,HINSTANCE,LPSTR,int){ SetMainWindowText("Diagonal"); SetOutApplicationLogValidFlag(FALSE); ChangeWindowMode(TRUE); DxLib_Init(); SetDrawScreen(DX_SCREEN_BACK); int x1, y1, x2, y2, SIZE=3, t=90; int Color = GetColor(255,0,255); double step; step = PI*2/SIZE; while(ScreenFlip()==0 && ProcessMessage()==0 && ClearDrawScreen()==0){ for(double i=0; i<2*PI; i+=step){ x1 = (int)(200*cos(i)); y1 = (int)(200*sin(i)); for(double j=i+step; j< 2*PI; j+=step){ x2 = (int)(200*cos(j)); y2 = (int)(200*sin(j)); DrawLine(320-y1,240-x1, 320-y2, 240-x2,Color); } } DrawFormatString(600, 440, Color, "%d", SIZE); t++; SIZE = (int)(t/30); step = PI*2/SIZE; } DxLib_End(); return 0; }
import java.awt.*; import java.awt.event.*; import javax.swing.*; public class Diagonal extends JFrame{ public static void main(String[] args){ new Diagonal(); } public Diagonal(){ setSize(500,500); setTitle("Diagonal"); setDefaultCloseOperation(EXIT_ON_CLOSE); MyJPanel myJPanel= new MyJPanel(); Container c = getContentPane(); c.add(myJPanel); setVisible(true); } public class MyJPanel extends JPanel{ public static final int SIZE = 9; //正九角形 public MyJPanel(){ setBackground(Color.white); } public void paintComponent(Graphics g){ int x1,y1,x2,y2; double step; step = Math.PI*2/SIZE; for(double i=0; i<2 *Math.PI; i+=step){ x1 = (int)(200*Math.cos(i)); y1 = (int)(200*Math.sin(i)); for(double j=i+step; j<2*Math.PI; j+=step){ x2 = (int)(200*Math.cos(j)); y2 = (int)(200*Math.sin(j)); g.drawLine(250-y1,250-x1,250-y2,250-x2); } } } } }