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

📄 e589. stroking or filling a shape.txt

📁 这里面包含了一百多个JAVA源文件
💻 TXT
字号:
A stroked shape is an outline of the shape. A filled shape is drawn with filled with a color. See also e575 The Quintessential Drawing Program. 
    public void paint(Graphics g) {
        Graphics2D g2d = (Graphics2D)g;
    
        // Set pen color for stroked shape
        g2d.setColor(Color.red);
    
        // Stroke the shape
        g2d.draw(shape);
    
    
        // Set fill color for filled shape
        g2d.setColor(Color.blue);
    
        // Fill the shape
        g2d.fill(shape);
    }

⌨️ 快捷键说明

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