- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在屏幕上拖动一个圆圈。当它到达左边界时,它就会停止。当它到达正确的边界时,它就会停止。当它到达顶部边界时它就会停止。但当它触及底部边界时,由于某种原因,它就会继续下去。请帮忙。
这是我的 MouseEvents 类:
public class MouseEvents {
int x1;
int x2;
int y1;
int y2;
int dBMPPAFX;// difference-between-mouse-pointer-position-and-first-x-position
int dBMPPAFY;// difference-between-mouse-pointer-position-and-first-y-position
int width;
int height;
static boolean inside_;
static String whichBound = "";
static String text = "";
MouseEvents(int x1, int y1, int width, int height) {
this.x1 = x1;
this.y1 = y1;
this.width = width;
this.height = height;
this.x2 = x1 + width;
this.y2 = y1 + height;
}
static String hitBound(MouseEvents e, int width, int height) {
whichBound = "";
if (e.x1 <= 0) {
whichBound = "left";
e.x1 = 0;
e.x2 = e.x1 + e.width;
}
if (e.x2 >= width) {
whichBound = "right";
e.x2 = width;
e.x1 = e.x2 - e.width;
}
if (e.y1 <= 0) {
whichBound = "up";
e.y1 = 0;
e.y2 = e.y1 + e.height;
}
if (e.y2 >= height) {
whichBound = "down";
e.y2 = height;
e.y1 = e.y2 - e.height;
}
return whichBound;
}
static void showLocationOfXAndY(MouseEvents e, int x, int y) {
e.text = Integer.toString(x) + "," + Integer.toString(y);
}
static boolean inside_(MouseEvents e, int x, int y) {
if (x > e.x1 && x < e.x2 && y > e.y1 && y < e.y2) {
e.dBMPPAFX = x - e.x1;
e.dBMPPAFY = y - e.y1;
e.x1 = x - e.dBMPPAFX;
e.y1 = y - e.dBMPPAFY;
e.x2 = e.x1 + e.width;
e.y2 = e.y1 + e.height;
return true;
} else {
return false;
}
}
static void dragShape(MouseEvents e, int x, int y) {
e.x1 = x - e.dBMPPAFX;
e.y1 = y - e.dBMPPAFY;
e.x2 = e.x1 + e.width;
e.y2 = e.y1 + e.height;
}
}
这是我的面板类:
public class Panel extends JPanel {
int panelWidth;
int panelLength;
static Panel panel = new Panel(400, 400);
static JFrame frame = new JFrame("Monster");
static MouseEvents circle = new MouseEvents(250, 250, 50, 50);
static Events here = new Events();
@Override
public Dimension getPreferredSize() {
return new Dimension(panelWidth, panelLength);
}
Panel(int width, int length) {
panelWidth = width - 9;
panelLength = length - 9;
}
public void paintComponent(Graphics g) {
super.paintComponent(g);
g.setColor(Color.BLACK);
g.drawOval(circle.x1, circle.y1, circle.width, circle.height);
g.drawString(circle.text, 100, 100);
}
public static void main(String args[]) {
frame.add(panel);
panel.addMouseListener(here);
panel.addMouseMotionListener(here);
Frame.showFrame(frame, false);
}
}
这是我的事件类:
public class Events implements ActionListener, MouseListener, MouseMotionListener {
String s;
public void mouseDragged(MouseEvent e) {
if (MouseEvents.inside_ && MouseEvents.hitBound(Panel.circle,400,400).equals("")) {
dragShape(Panel.circle, e.getX(), e.getY());
s = MouseEvents.hitBound(Panel.circle,400,400);
System.out.println(s);
}
if (MouseEvents.inside_ && MouseEvents.hitBound(Panel.circle,400,400).equals("left")) {
if(Panel.circle.x1>=0){
dragShape(Panel.circle, e.getX(), e.getY());
}
}
if (MouseEvents.inside_ && MouseEvents.hitBound(Panel.circle,400,400).equals("right")) {
if(Panel.circle.x2<=400){
System.out.println("What...."+Panel.circle.x2);
dragShape(Panel.circle, e.getX(), e.getY());
showLocationOfXAndY(Panel.circle, Panel.circle.x2, Panel.circle.y2);
}
}
if (MouseEvents.inside_ && MouseEvents.hitBound(Panel.circle,400,400).equals("up")) {
if(Panel.circle.y1>=0){
dragShape(Panel.circle, e.getX(), e.getY());
}
}
if (MouseEvents.inside_ && MouseEvents.hitBound(Panel.circle,400,400).equals("down")) {
if(Panel.circle.y2<=400){
System.out.println("What...."+Panel.circle.y2);
dragShape(Panel.circle, e.getX(), e.getY());
showLocationOfXAndY(Panel.circle, Panel.circle.x2, Panel.circle.y2);
}
}
Panel.frame.repaint();
}
public void mouseMoved(MouseEvent e) {
showLocationOfXAndY(Panel.circle, Panel.circle.x2, Panel.circle.y2);
Panel.frame.repaint();
}
public void mouseClicked(MouseEvent e) {
}
public void mouseEntered(MouseEvent e) {
}
public void mouseExited(MouseEvent e) {
}
public void mousePressed(MouseEvent e) {
Panel.circle.inside_ = inside_(Panel.circle, e.getX(), e.getY());
System.out.println(Panel.circle.inside_);
System.out.println(hitBound(Panel.circle,400,400));
}
public void mouseReleased(MouseEvent e) {
Panel.circle.inside_ = false;
System.out.println("x1:"+Panel.circle.x1+"\ny1:"+Panel.circle.y1+"\nx2:"+Panel.circle.x2+"\ny2:"+Panel.circle.y2);
}
public void actionPerformed(ActionEvent e) {
}
}
如果有人知道我做错了什么,请帮忙。谢谢。
最佳答案
简单的答案,在 mouseDragged() 方法的底部,在 repaint() 之前,添加一个 hitBound() ,如下所示:
...
MouseEvents.hitBound(Panel.circle,400,400);
Panel.frame.repaint();
...
那么为什么会发生这种情况呢?在 mouseDragged 方法的每种情况下,您都会检查 hitBound 是否等于不同边缘情况之一。这很有效,代码会相应地进入各个部分。当您处于其中一种情况时,您将检查圆圈是否处于可以移动的有效位置,如果是,则只需让用户再次移动圆圈即可。
这就是罪魁祸首。例如:在最后一种不起作用的情况下,您检查以下内容:
MouseEvents.hitBound(Panel.circle,400,400).equals("down")
这是真的。然后你继续检查:
if(Panel.circle.y2 <= 400)
这也是正确的,因为 hitBound() 调用会将 y2 设置为等于 400!
为什么其他情况还能工作?其他情况实际上也有同样的问题,但你看不到它,因为你稍后在下一个 if 情况下调用了 hitBound() 。这将按照计划停止边界处圆圈的位置。
正如我之前提到的;解决此问题的一个简单方法是在重新绘制之前添加对 hitBound() 的调用。
关于java - 形状未停止于下边界,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29549431/
我是 TensorFlow 菜鸟。我已经从 deeppose 的开源实现中训练了一个 TensorFlow 模型,现在必须针对一组新图像运行该模型。 该模型是在大小为 100 * 100 的图像上训练
我正在尝试以这种方式设置节点的大小: controller[shape=circle,width=.5,label="Controller",style=filled,fillcolor="#8EC1
是否有 VBA 代码可以在选择的每个单元格周围添加文本框。文本框应该是单元格的大小(类似于边框)? 最佳答案 您可以使用 .AddTextbox方法。循环遍历您选择的单元格,并使用单元格的尺寸属性来设
我有一个变量 a尺寸 (1, 5) 我想“平铺”的次数与我的小批量的大小一样多。例如,如果小批量大小为 32,那么我想构造一个张量 c维度为 (32, 5),其中每一行的值与原始 (1, 5) 变量
我在使用 javaFX 时遇到问题。我想每 1000 毫秒在应用程序窗口中显示一次时间。 public class Main extends Application { StackPane root
所以我目前正在创建这个 API。这个登录类应该只创建一个场景,其中包含制作 GUI 所需的所有框。我遇到的问题是,单击时我的形状不会执行任何操作。我有事件监听器,但它不起作用。 import
我正在用 python turtle 画一些东西,我使用了形状函数,但是形状 overdraw 了它们之前的其他形状(我可以看到形状在移动),并且我只得到了最后一个形状: `up() goto(-20
我正在读取多个 .csv 文件作为具有相同形状的 panda DataFrame。对于某些索引,某些值为零,因此我想选择具有相同形状的每个索引的值,并为相同的索引放置零值并删除零以成为相同的形状: a
我有一个简单的二维网格,格式为 myGrid[x,y] 我正在尝试找到一种方法来找到围绕选定网格的周长,这样我就有了一个可供选择的形状。 这是我的意思的一个例子: 这里的想法是找到所有相关的“角”,也
我有一个网络层,用于调用多个端点。我想减少重复代码的数量,并认为也许我可以将响应模型作为端点的一部分传递。 这个想法是不需要多个仅因响应而不同的函数,我可以调用我的网络层并根据路径进行设置。 我看到的
我正在创建一个自定义 ImageView,它将我的图像裁剪成六边形并添加边框。我想知道我的方法是否正确,或者我是否以错误的方式这样做。有很多自定义库已经在执行此操作,但开箱即用的库中没有一个具有我正在
我正在编写一些代码,这些代码需要识别一些基于节点云的相当基本的几何图形。我会对检测感兴趣: 板(简单有界平面) 圆柱体(两个节点循环) 半圆柱(圆弧+直线+圆弧+直线) 圆顶(n*loop+top n
我有这个形状: http://screencast.com/t/9UUhAXT5Wu 但边界在截止点处没有跟随它 - 我该如何解决? 这是我当前 View 的代码: self.view.backgro
我现在脑震荡,所以我想问一个非常简单的问题。 目前,我正在尝试打印出这样的开头 当输入为 7 时,输出为 * ** * ** * ** * 这里是我的代码,它打印 14 次而不是 7 次,或者当我输入
我想生成如下设计。计划选项卡顶部的"new"。我使用的属性适用于 chrome 和 mozilla,但在 Edge 中出现故障。 以下是我在 chrome 中应用的样式: a.subnav__item
我想要一个带有两种颜色边框轮廓的 shape 元素。我可以使用 solid 元素做一个单一的颜色轮廓,但这只允许我画一条线。我尝试在我的形状中使用两个 stroke 元素,但这也不起作用。 有没有办法
我需要为屏幕上的形状着色任何我想要的颜色。我目前正在尝试使用 UIImage 来执行此操作,我想根据自己的需要重新着色。据我所知,执行此操作的唯一方法是获取 UIImage 的各个像素,这需要更多我想
因此,经过多年的 OOP,我从我的一门大学类(class)中得到了一个非常简单的家庭作业,以实现一个简单的面向对象的结构。 要求的设计: 实现面向对象的解决方案以创建以下形状: 椭圆、圆形、正方形、矩
关闭。这个问题需要更多focused .它目前不接受答案。 想改进这个问题吗? 更新问题,使其只关注一个问题 editing this post . 关闭 5 年前。 Improve this qu
我想知道是否可以使用类似于以下的 div 制作复杂的形状: 它基本上是一个四 Angular 向内收缩的圆 Angular 正方形。目标是使用背景图像来填充它。我可以使用具有以下 SVG 路径的剪辑蒙
我是一名优秀的程序员,十分优秀!