⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 windingrule.java

📁 please read it,you can
💻 JAVA
字号:
/* * @(#)WindingRule.java	1.4	98/12/03 * * Copyright 1998 by Sun Microsystems, Inc., * 901 San Antonio Road, Palo Alto, California, 94303, U.S.A. * All rights reserved. * * This software is the confidential and proprietary information * of Sun Microsystems, Inc. ("Confidential Information").  You * shall not disclose such Confidential Information and shall use * it only in accordance with the terms of the license agreement * you entered into with Sun. */import java.awt.*;import java.awt.event.*;import java.awt.geom.GeneralPath;import javax.swing.*;/** * The WindingRule class fills rectangles to illustrate the GeneralPath  * winding rules, which are rules for filling the interior of a path. */public class WindingRule extends JApplet {    public void init() {        setBackground(Color.white);    }    public void drawDemo(int w, int h, Graphics2D g2) {        g2.translate(w*.2, h*.2);        GeneralPath p = new GeneralPath(GeneralPath.WIND_NON_ZERO);        p.moveTo(0.0f, 0.0f);        p.lineTo(w*.5f, 0.0f);        p.lineTo(w*.5f, h*.2f);        p.lineTo(0.0f, h*.2f);        p.closePath();        p.moveTo(w*.05f, h*.05f);        p.lineTo(w*.55f, h*.05f);        p.lineTo(w*.55f, h*.25f);        p.lineTo(w*.05f, h*.25f);        p.closePath();        g2.setColor(Color.lightGray);        g2.fill(p);        g2.setColor(Color.black);        g2.draw(p);        g2.drawString("NON_ZERO rule", 0, -5);        g2.translate(0.0f, h*.45);        p.setWindingRule(GeneralPath.WIND_EVEN_ODD);        g2.setColor(Color.lightGray);        g2.fill(p);        g2.setColor(Color.black);        g2.draw(p);        g2.drawString("EVEN_ODD rule", 0, -5);    }    public void paint(Graphics g) {        Graphics2D g2 = (Graphics2D) g;        Dimension d = getSize();        g2.setBackground(getBackground());        g2.clearRect(0, 0, d.width, d.height);        g2.setRenderingHint(RenderingHints.KEY_ANTIALIASING,                            RenderingHints.VALUE_ANTIALIAS_ON);        drawDemo(d.width, d.height, g2);    }    public static void main(String argv[]) {        WindingRule demo = new WindingRule();        demo.init();        JFrame f = new JFrame("Java 2D(TM) Demo - WindingRule");        f.addWindowListener(new WindowAdapter() {            public void windowClosing(WindowEvent e) {System.exit(0);}        });        f.getContentPane().add("Center", demo);        f.pack();        f.setSize(new Dimension(400,300));        f.show();    }}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -