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

📄 intersection.java

📁 java2d的源码分析
💻 JAVA
字号:
/* * @(#)Intersection.java	1.19 99/04/23 * * Copyright (c) 1998, 1999 by Sun Microsystems, Inc. All Rights Reserved. *  * Sun grants you ("Licensee") a non-exclusive, royalty free, license to use, * modify and redistribute this software in source and binary code form, * provided that i) this copyright notice and license appear on all copies of * the software; and ii) Licensee does not utilize the software in a manner * which is disparaging to Sun. *  * This software is provided "AS IS," without a warranty of any kind. ALL * EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND WARRANTIES, INCLUDING ANY * IMPLIED WARRANTY OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE OR * NON-INFRINGEMENT, ARE HEREBY EXCLUDED. SUN AND ITS LICENSORS SHALL NOT BE * LIABLE FOR ANY DAMAGES SUFFERED BY LICENSEE AS A RESULT OF USING, MODIFYING * OR DISTRIBUTING THE SOFTWARE OR ITS DERIVATIVES. IN NO EVENT WILL SUN OR ITS * LICENSORS BE LIABLE FOR ANY LOST REVENUE, PROFIT OR DATA, OR FOR DIRECT, * INDIRECT, SPECIAL, CONSEQUENTIAL, INCIDENTAL OR PUNITIVE DAMAGES, HOWEVER * CAUSED AND REGARDLESS OF THE THEORY OF LIABILITY, ARISING OUT OF THE USE OF * OR INABILITY TO USE SOFTWARE, EVEN IF SUN HAS BEEN ADVISED OF THE * POSSIBILITY OF SUCH DAMAGES. *  * This software is not designed or intended for use in on-line control of * aircraft, air traffic, aircraft navigation or aircraft communications; or in * the design, construction, operation or maintenance of any nuclear * facility. Licensee represents and warrants that it will not use or * redistribute the Software for such purposes. */package demos.Clipping;import java.awt.*;import java.awt.event.*;import java.awt.geom.*;import java.awt.font.FontRenderContext;import java.awt.font.TextLayout;import javax.swing.*;import AnimatingContext;import DemoSurface;import DemoPanel;import CustomControls;/** * Animated intersection clipping of lines, an image and a textured rectangle. */public class Intersection extends DemoSurface implements AnimatingContext, CustomControls {    private static final int HEIGHTDECREASE = 0;    private static final int HEIGHTINCREASE = 1;    private static final int WIDTHDECREASE = 2;    private static final int WIDTHINCREASE = 3;    private int xx, yy, ww, hh;    private int direction = HEIGHTDECREASE;    private int angdeg;    private Shape textshape;    private double sw, sh;    private GeneralPath ovals;    private Rectangle2D rectshape;    private DemoControls controls;    protected boolean doIntersection = true;    protected boolean doOvals = true;    protected boolean doText;    protected boolean threeSixty;    public Intersection() {        setBackground(Color.white);        controls = new DemoControls(this);    }    public String[] getCustomControlsConstraints() {        return new String[] { BorderLayout.NORTH };    }    public Component[] getCustomControls() {        return new Component[] { (Component) controls };    }    public void customControlsThread(int state) {        if (state == CustomControls.START) {            controls.start();        } else if (state == CustomControls.STOP) {            controls.stop();        }    }    public void reset(int w, int h) {        xx = yy = 0;        ww = w-1; hh = h;        direction = HEIGHTDECREASE;        angdeg = 0;        FontRenderContext frc = new FontRenderContext(null, true, false);        Font f = new Font("serif",Font.BOLD,32);        TextLayout tl = new TextLayout("J2D", f, frc);        sw = tl.getBounds().getWidth();        sh = tl.getBounds().getHeight();        int size = Math.min(w, h);        double sx = (size-40)/sw;        double sy = (size-100)/sh;        AffineTransform Tx = AffineTransform.getScaleInstance(sx, sy);        textshape = tl.getOutline(Tx);        rectshape = textshape.getBounds();        sw = rectshape.getWidth();        sh = rectshape.getHeight();        ovals = new GeneralPath();        ovals.append(new Ellipse2D.Double(10, 10, 20, 20), false);        ovals.append(new Ellipse2D.Double(w-30, 10, 20, 20), false);        ovals.append(new Ellipse2D.Double(10, h-30, 20, 20), false);        ovals.append(new Ellipse2D.Double(w-30, h-30, 20, 20), false);    }    public void step(int w, int h) {        if (direction == HEIGHTDECREASE) {            yy+=2; hh-=4;            if (yy >= h/2) {                direction = HEIGHTINCREASE;            }        } else if (direction == HEIGHTINCREASE) {            yy-=2; hh+=4;            if (yy <= 0) {                direction = WIDTHDECREASE;                hh = h-1; yy = 0;            }        }        if (direction == WIDTHDECREASE) {            xx+=2; ww-=4;            if (xx >= w/2) {                direction = WIDTHINCREASE;            }        } else if (direction == WIDTHINCREASE) {            xx-=2; ww+=4;            if (xx <= 0) {                direction = HEIGHTDECREASE;                ww = w-1; xx = 0;            }        }        if ((angdeg += 5) == 360) {             angdeg = 0;            threeSixty = true;        }    }    public void drawDemo(int w, int h, Graphics2D g2) {        Rectangle rect = new Rectangle(xx, yy, ww, hh);               AffineTransform Tx = new AffineTransform();        Tx.rotate(Math.toRadians(angdeg),w/2,h/2);        Tx.translate(w/2-sw/2, sh+(h-sh)/2);        GeneralPath path = new GeneralPath();        if (doOvals) {            path.append(ovals, false);        }         if (doText) {            path.append(Tx.createTransformedShape(textshape), false);        } else {            path.append(Tx.createTransformedShape(rectshape), false);        }        if (doIntersection) {            g2.clip(rect);            g2.clip(path);        }        g2.setColor(Color.green);        g2.fill(rect);        g2.setClip(new Rectangle(0, 0, w, h));        g2.setColor(Color.lightGray);        g2.draw(rect);        g2.setColor(Color.black);        g2.draw(path);    }    public static void main(String argv[]) {        final DemoPanel dp = new DemoPanel(new Intersection());        Frame f = new Frame("Java2D Demo - Intersection");        f.addWindowListener(new WindowAdapter() {            public void windowClosing(WindowEvent e) {System.exit(0);}            public void windowDeiconified(WindowEvent e) {                 dp.surface.start();             }            public void windowIconified(WindowEvent e) {                 dp.surface.stop();             }        });        f.add("Center", dp);        f.pack();        f.setSize(new Dimension(300,300));        f.show();        dp.surface.start();    }    static class DemoControls extends JPanel implements ActionListener, Runnable {        Intersection demo;        JToolBar toolbar;        Thread thread;        public DemoControls(Intersection demo) {            this.demo = demo;            setBackground(Color.gray);            add(toolbar = new JToolBar());            toolbar.setFloatable(false);            addTool("Intersect", true);            addTool("Text", false);            addTool("Ovals", true);            addMouseListener(new MouseAdapter() {                public void mouseClicked(MouseEvent e) {                    if (thread == null) start(); else stop();                }            });        }        public void addTool(String str, boolean state) {            JButton b = (JButton) toolbar.add(new JButton(str));            b.setBackground(state ? Color.green : Color.lightGray);            b.setSelected(state);            b.addActionListener(this);        }        public void actionPerformed(ActionEvent e) {            JButton b = (JButton) e.getSource();            b.setSelected(!b.isSelected());            b.setBackground(b.isSelected() ? Color.green : Color.lightGray);            if (b.getText().equals("Intersect")) {                demo.doIntersection = b.isSelected();            } else if (b.getText().equals("Ovals")) {                demo.doOvals = b.isSelected();            } else if (b.getText().equals("Text")) {                demo.doText = b.isSelected();            }            if (demo.thread == null) {                demo.repaint();            }        }        public Dimension getPreferredSize() {            return new Dimension(200,37);        }        public void start() {            if (thread != null) {                return;            }            thread = new Thread(this);            thread.setPriority(Thread.MIN_PRIORITY);            thread.setName("Clipping.Intersection DemoControls Thread");            thread.start();        }        public synchronized void stop() {            if (thread != null) {                thread.interrupt();            }            thread = null;            notifyAll();        }        public void run() {            Thread me = Thread.currentThread();            while (thread == me) {                if (demo.threeSixty) {                    ((JButton) toolbar.getComponentAtIndex(1)).doClick();                    demo.threeSixty = false;                }                try {                    thread.sleep(500);                } catch (InterruptedException e) { return; }            }            thread = null;        }    } // End DemoControls} // End Intersection

⌨️ 快捷键说明

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