• 大小: 3.09KB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2021-02-20
  • 语言: Java
  • 标签:

资源简介

Java Applet绘制圆弧(提高篇-实例572).zip

资源截图

代码片段和文件信息

package com.zzk;

import java.applet.applet;
import java.awt.Color;
import java.awt.Graphics;

public class DrawArcapplet extends applet {
    public void paint(Graphics g) {
        String value = “画弧“;
        int x = 35;// 弧位置的横坐标
        int y = 65;// 弧位置的纵坐标
        int l = 150;// 弧的长度
        int width = 80;// 弧的宽度
        int startAngle = 10;// 弧的起始角度
        int endAngle = -120;// 终止画弧前扫过的角度
        g.setColor(Color.red);// 设置颜色
        g.drawArc(x + 20 y l width startAngle endAngle);// 绘制弧
        
        int x0 = 5;// 弧位置的横坐标
        int y0 = 40;// 弧位置的纵坐标
        int l0 = 180;// 弧的长度
        int width0 = 120;// 弧的宽度
        int startAngle0 = 70;// 弧的起始角度
        int endAngle0 = 180;// 终止画弧前扫过的角度
        g.setColor(Color.red);// 设置颜色
        g.drawArc(x0 + 20 y0 l0 width0 startAngle0 endAngle0);// 绘制弧
        
        int x1 = 19;// 弧位置的横坐标
        int y1 = 90;// 弧位置的纵坐标
        int l1 = 200;// 弧的长度
        int width1 = 100;// 弧的宽度
  

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     文件         301  2010-12-22 08:52  .classpath
     文件         379  2010-12-22 08:52  .project
     文件         629  2010-12-22 08:52  .settings\org.eclipse.jdt.core.prefs
     文件         102  2010-12-22 08:52  bin\DrawArcapplet.html
     文件         141  2010-12-27 18:49  bin\java.policy.applet
     文件        1258  2011-01-29 09:04  bin\com\zzk\DrawArcapplet.class
     文件         102  2010-12-22 08:52  src\DrawArcapplet.html
     文件        1391  2010-12-27 18:54  src\com\zzk\DrawArcapplet.java

评论

共有 条评论