91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

Java中正方形的平移變換怎么實現

小樊
82
2024-08-30 07:32:44
欄目: 編程語言

在Java中,要實現正方形的平移變換,可以使用Graphics類的drawRect()方法和translate()方法。以下是一個簡單的示例:

import javax.swing.*;
import java.awt.*;

public class SquareTranslationDemo extends JFrame {
    public SquareTranslationDemo() {
        setTitle("Square Translation Demo");
        setSize(400, 400);
        setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    }

    @Override
    public void paint(Graphics g) {
        super.paint(g);

        // 設置正方形的初始位置和大小
        int x = 100;
        int y = 100;
        int width = 50;
        int height = 50;

        // 繪制原始正方形
        g.setColor(Color.BLUE);
        g.drawRect(x, y, width, height);

        // 平移變換
        int translationX = 50;
        int translationY = 50;
        g.translate(translationX, translationY);

        // 繪制平移后的正方形
        g.setColor(Color.RED);
        g.drawRect(x, y, width, height);
    }

    public static void main(String[] args) {
        SwingUtilities.invokeLater(() -> {
            SquareTranslationDemo demo = new SquareTranslationDemo();
            demo.setVisible(true);
        });
    }
}

在這個示例中,我們首先繪制了一個藍色的正方形,然后使用g.translate()方法進行平移變換。平移的距離由translationXtranslationY決定。最后,我們在平移后的位置繪制了一個紅色的正方形。

0
镇雄县| 安康市| 张掖市| 奉节县| 揭阳市| 临西县| 郴州市| 滦南县| 仲巴县| 咸宁市| 平安县| 方正县| 庆安县| 界首市| 揭阳市| 特克斯县| 溆浦县| 鄂托克前旗| 巴彦县| 吴旗县| 萍乡市| 浏阳市| 凤山县| 大港区| 巴东县| 杨浦区| 汉川市| 吉木乃县| 塘沽区| 文山县| 旌德县| 克拉玛依市| 尚义县| 金川县| 新昌县| 宜君县| 安吉县| 平凉市| 梅河口市| 水富县| 林西县|