public void setNextCardLocation(Point point){
PKCard card = main.getNextCard(this);
if (card != null){
if (point == null){
card.setNextCardLocation(null);
main.table.remove(card.getLocation());
card.setLocation(card.initPoint);
main.table.put(card.initPoint, card);
}
else{
point = new Point(point);
point.y += 20;
card.setNextCardLocation(point);
point.y -= 20;
main.table.remove(card.getLocation());
card.setLocation(point);
main.table.put(card.getLocation(), card);
card.initPoint = card.getLocation();
}
}
}
1条回答 默认 最新
悬赏问题
- ¥15 关于#python#的问题,请各位专家解答!
- ¥100 如何快速统计出一亿行由0和1组成的数字里面的1连续出现几次及标记后出现的次数?
- ¥15 include 头文件引用出错问题
- ¥15 MATLAB并行池出问题
- ¥15 本地运行成功上传到洛谷上却WA?
- ¥15 断网的时候检测socket连接状态
- ¥15 Jenkins执行bat指令时报错
- ¥15 基于FPGA的算法实现
- ¥15 在AST抽象语法图构建CFG图时 如何构建的
- ¥15 关于#r语言#的问题:R语言GSVA函数调用失效q生信求解:这个GSVA的包,看了一下说是函数调用过期失效了,现在需要套用新模版公式,有没有解答的呀