本文整理汇总了Java中javafx.scene.canvas.Canvas.setWidth方法的典型用法代码示例。如果您正苦于以下问题:Java Canvas.setWidth方法的具体用法?Java Canvas.setWidth怎么用?Java Canvas.setWidth使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类javafx.scene.canvas.Canvas
的用法示例。
在下文中一共展示了Canvas.setWidth方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: Framework
import javafx.scene.canvas.Canvas; //导入方法依赖的package包/类
public Framework(int width, int height) {
this.setWidth(width);
this.setHeight(height);
random = new Random();
bullets = new ArrayList<>();
tanks = new ArrayList<>();
mines = new ArrayList<>();
pickUps = new ArrayList<>();
hud = new HUD(this);
canvas = new Canvas(width, height);
gc = canvas.getGraphicsContext2D();
canvas.setWidth(width);
canvas.setHeight(height);
this.getChildren().add(canvas);
//Create Game Loop
gameloop = new Timeline(new KeyFrame(
Duration.millis(16.666666666667),
ae -> update()));
gameloop.setCycleCount(Timeline.INDEFINITE);
//Set SCALE to current scale of Canvas
SCALE = this.getScaleX();
//Make the Canvas register keystrokes
this.addEventFilter(MouseEvent.ANY, (e) -> this.requestFocus());
//Set Inputs
setKeyInput();
setMouseInput();
}
示例2: layoutChildren
import javafx.scene.canvas.Canvas; //导入方法依赖的package包/类
@Override
protected void layoutChildren()
{
super.layoutChildren();
final double x = this.snappedLeftInset();
final double y = this.snappedTopInset();
final double w = this.snapSize(this.getWidth()) - x - this.snappedRightInset();
final double h = this.snapSize(this.getHeight()) - y - this.snappedBottomInset();
for(Canvas canvas : this.layers)
{
canvas.setLayoutX(x);
canvas.setLayoutY(y);
canvas.setWidth(w);
canvas.setHeight(h);
}
}
示例3: CircularDirectionIndicator
import javafx.scene.canvas.Canvas; //导入方法依赖的package包/类
public CircularDirectionIndicator(String name, double radius){
this.name = name;
this.radius = radius;
root = new VBox();
StackPane graphicalData = new StackPane();
graphicalData.setMaxSize(radius * 2, radius * 2);
lineBox = new Canvas();
outerCircle = new Circle(graphicalData.getWidth() * 0.5, graphicalData.getHeight() * 0.5, radius);
outerCircle.setFill(Color.TRANSPARENT);
outerCircle.setStroke(Color.BLACK);
/*innerCircle = new Circle(graphicalData.getWidth() * 0.5, graphicalData.getHeight() * 0.5, radius * 0.5);
innerCircle.setFill(Color.TRANSPARENT);
innerCircle.setStroke(Color.BLACK);*/
lineBox.setWidth(radius * 2);
lineBox.setHeight(radius * 2);
graphicalData.getChildren().addAll(outerCircle, lineBox);
valLbl = new Label(name+": 0.0");
valLbl.setMinWidth(radius * 2);
valLbl.setTextAlignment(TextAlignment.CENTER);
HBox labalBox = new HBox();
labalBox.getChildren().add(valLbl);
labalBox.setAlignment(Pos.CENTER);
root.setAlignment(Pos.CENTER);
root.setSpacing(2.0);
root.getChildren().addAll(labalBox, graphicalData);
setValue(0);
}