计算机图形学的一些实验

源代码在线查看: point.java

软件大小: 2 K
上传用户: x395450030
关键词: 计算机图形学 实验
下载地址: 免注册下载 普通下载 VIP

相关代码

				import java.awt.Color;
				import java.awt.Graphics;
				
				
				public class Point{
				int x;
				 int y;
					public Point(int x,int y){
						this.x=x;
						this.y=y;
					}
					void draw(Graphics g){
						Color c = g.getColor();
				
						g.setColor(Color.red);
						g.fillOval(x*25+350-2, 350-y*25-2,6,6);
					}
					
				}
							

相关资源