1

下面的 piccolo 示例实际上应该做什么?我没有为我画任何东西。并且paint方法从未调用过:

package test.piccolo;

import java.awt.Graphics2D;
import java.awt.geom.Ellipse2D;
import java.awt.geom.Rectangle2D;

import edu.umd.cs.piccolo.PNode;
import edu.umd.cs.piccolo.nodes.PText;
import edu.umd.cs.piccolo.util.PPaintContext;
import edu.umd.cs.piccolox.PFrame;

public class SimpleEllipseNode extends PNode {
    private Ellipse2D ellipse;

    // This nodes uses an internal Ellipse2D to define its shape.
    public Ellipse2D getEllipse() {
        if (ellipse == null)
            ellipse = new Ellipse2D.Double();
        return ellipse;
    }

    // This method is important to override so that the geometry of
    // the ellipse stays consistent with the bounds geometry.
    public boolean setBounds(double x, double y, double width, double height) {
        if (super.setBounds(x, y, width, height)) {
            ellipse.setFrame(x, y, width, height);
            return true;
        }
        return false;
    }

    // Non rectangular subclasses need to override this method so
    // that they will be picked correctly and will receive the
    // correct mouse events.
    public boolean intersects(Rectangle2D aBounds) {
        return getEllipse().intersects(aBounds);
    }

    // Nodes that override the visual representation of their super
    // class need to override a paint method.
    public void paint(PPaintContext aPaintContext) {
        Graphics2D g2 = aPaintContext.getGraphics();
        g2.setPaint(getPaint());
        g2.fill(getEllipse());
    }

    public static void main(String[] args) {

        PFrame frame = new PFrame() {

            @Override
            public void initialize() {

                PNode aNode = new SimpleEllipseNode();
                //PNode aNode = new PText("Hello World!");

                // Add the node to the canvas layer so that it
                // will be displayed on the screen.
                getCanvas().getLayer().addChild(aNode);
            }

        };

    }
}
4

1 回答 1

1

椭圆未绘制可能是因为 的边界为SimpleEllipseNode空。将这些行添加到initialize()

aNode.setPaint(Color.RED);
aNode.setBounds(0, 0, 100, 100);

它应该画一个红色椭圆。setBounds()由于ellipse尚未初始化,因此存在 NPE 。这可以通过添加getEllipse();为第一行来解决setBounds()

不确定覆盖paint()and背后的原因是什么setBounds(),通常您可以通过使用组合节点轻松摆脱。例如:

import java.awt.Color;
import edu.umd.cs.piccolo.nodes.PPath;
import edu.umd.cs.piccolox.PFrame;

public class SimpleEllipseNode {
    public static void main(final String[] args) {
        PFrame frame = new PFrame() {
            @Override
            public void initialize() {
                final PPath circle = PPath.createEllipse(0, 0, 100, 100);
                circle.setPaint(Color.RED);
                getCanvas().getLayer().addChild(circle);
            }
        };
    }
}
于 2013-10-10T04:28:01.830 回答