java 线绕点旋转_围绕字符旋转图像(JAVA)
发布日期:2022-02-03 04:38:26 浏览次数:11 分类:技术文章

本文共 2715 字,大约阅读时间需要 9 分钟。

你的意思是…

e535f7ea48c6085711a1b4cb48b031c6.png

(请注意,红线是指示中心angular度的引导线,您不需要它;))

花哨的, getSwordHandlePoint东西在getSwordHandlePoint方法中,它计算沿着向量应该放置句柄的点…

public class TestSword { public static void main(String[] args) { new TestSword(); } public TestSword() { EventQueue.invokeLater(new Runnable() { @Override public void run() { try { UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName()); } catch (ClassNotFoundException ex) { } catch (InstantiationException ex) { } catch (IllegalAccessException ex) { } catch (UnsupportedLookAndFeelException ex) { } JFrame frame = new JFrame("Test"); frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); frame.setLayout(new BorderLayout()); frame.add(new SwordPane()); frame.pack(); frame.setLocationRelativeTo(null); frame.setVisible(true); } }); } public class SwordPane extends JPanel { private BufferedImage character; private BufferedImage sword; private double angle = 0; public SwordPane() { try { character = ImageIO.read(new File("character.png")); sword = ImageIO.read(new File("Sword.png")); } catch (IOException exp) { exp.printStackTrace(); } Timer timer = new Timer(100, new ActionListener() { @Override public void actionPerformed(ActionEvent e) { angle += 10; if (angle > 360) { angle -= 360; } repaint(); } }); timer.setRepeats(true); timer.setCoalesce(true); timer.start(); } @Override public Dimension getPreferredSize() { int width = character.getHeight() + sword.getWidth(); int height = character.getHeight() + sword.getWidth(); return new Dimension(width * 2, height * 2); } protected Point getSwordHandlePoint() { int radius = 272; // This is the height of the character... int x = Math.round(getWidth() / 2); int y = Math.round(getHeight() / 2); double rads = Math.toRadians(angle - 180); // Make 0 point out to the right... // If you add sword.getWidth, you might be able to change the above... int fullLength = Math.round((radius / 2f)) - sword.getWidth(); // Calculate the outter point of the line int xPosy = Math.round((float) (x + Math.cos(rads) * fullLength)); int yPosy = Math.round((float) (y - Math.sin(rads) * fullLength)); return new Point(xPosy, yPosy); } @Override protected void paintComponent(Graphics g) { super.paintComponent(g); Graphics2D g2d = (Graphics2D) g.create(); int x = (getWidth() - character.getWidth()) / 2; int y = (getHeight() - character.getHeight()) / 2; g2d.drawImage(character, x, y, this); x = getWidth() / 2; y = getHeight() / 2; Point p = getSwordHandlePoint(); g2d.setColor(Color.RED); g2d.drawLine(x, y, px, py); AffineTransform at = AffineTransform.getTranslateInstance(px, py); at.rotate(Math.toRadians(-angle)); g2d.setTransform(at); g2d.drawImage(sword, 0, 0, this); g2d.dispose(); } } }

现在,我的触发是无望的,没有那么绝望。 我从网上“借用”algorithm,并根据自己的需要调整。

转载地址:https://blog.csdn.net/weixin_30596151/article/details/114504876 如侵犯您的版权,请留言回复原文章的地址,我们会给您删除此文章,给您带来不便请您谅解!

上一篇:java servlet ajax_结合使用AJAX和Servlet
下一篇:用java语言求老汉卖西瓜程序_Java编程练习题

发表评论

最新留言

关注你微信了!
[***.104.42.241]2024年03月29日 06时32分23秒