當前位置: 首頁>>代碼示例>>Java>>正文


Java Line.setStrokeLineCap方法代碼示例

本文整理匯總了Java中javafx.scene.shape.Line.setStrokeLineCap方法的典型用法代碼示例。如果您正苦於以下問題:Java Line.setStrokeLineCap方法的具體用法?Java Line.setStrokeLineCap怎麽用?Java Line.setStrokeLineCap使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在javafx.scene.shape.Line的用法示例。


在下文中一共展示了Line.setStrokeLineCap方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。

示例1: AnimatedIcon

import javafx.scene.shape.Line; //導入方法依賴的package包/類
public AnimatedIcon() {
    iconFill = new SimpleObjectProperty<>(Color.ORANGE);

    line1 = new Line(4, 8, 28, 8);
    line1.setStrokeWidth(3);
    line1.strokeProperty().bind(iconFill);
    line1.setManaged(false);
    line1.setStrokeLineCap(StrokeLineCap.ROUND);

    line2 = new Line(4, 16, 28, 16);
    line2.setStrokeWidth(3);
    line2.strokeProperty().bind(iconFill);
    line2.setManaged(false);
    line2.setStrokeLineCap(StrokeLineCap.ROUND);

    line3 = new Line(4, 24, 28, 24);
    line3.setStrokeWidth(3);
    line3.strokeProperty().bind(iconFill);
    line3.setManaged(false);
    line3.setStrokeLineCap(StrokeLineCap.ROUND);

    getChildren().addAll(line1, line2, line3);
    setPrefWidth(32);
    setPrefHeight(32);
    setMinWidth(USE_PREF_SIZE);
    setMinHeight(USE_PREF_SIZE);
    setMaxWidth(USE_PREF_SIZE);
    setMaxHeight(USE_PREF_SIZE);
}
 
開發者ID:hendrikebbers,項目名稱:ExtremeGuiMakeover,代碼行數:30,代碼來源:AnimatedIcon.java

示例2: draw

import javafx.scene.shape.Line; //導入方法依賴的package包/類
@Override
public void draw(Line line) {
	line.setStartX(0d);
	line.setStartY(0d);
	line.setEndX(200d);
	line.setEndY(200d);

	line.setStrokeWidth(10);
	line.setStrokeLineCap(StrokeLineCap.BUTT);
	line.getStrokeDashArray().addAll(15d, 5d, 15d, 15d, 20d);
	line.setStrokeDashOffset(10);

}
 
開發者ID:callakrsos,項目名稱:Gargoyle,代碼行數:14,代碼來源:LineDrawItemSkin.java


注:本文中的javafx.scene.shape.Line.setStrokeLineCap方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。