中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

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
仁寿县| 襄樊市| 西乌| 四川省| 通城县| 怀仁县| 本溪| 辽宁省| 江油市| 邳州市| 灌阳县| 景宁| 乌兰浩特市| 宣武区| 晋城| 连城县| 新干县| 金门县| 昌乐县| 惠水县| 西和县| 大埔县| 甘孜县| 江永县| 潢川县| 永泰县| 治多县| 贺州市| 财经| 沅江市| 衢州市| 广平县| 安龙县| 襄城县| 白银市| 辰溪县| 湖州市| 临高县| 额尔古纳市| 巴塘县| 腾冲县|