Edit C:\Program Files\Java\jdk1.8.0_121\javafx\scene\shape\StrokeLineJoin.java
/* * Copyright (c) 2008, 2013, Oracle and/or its affiliates. All rights reserved. * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. * * * * * * * * * * * * * * * * * * * * */ package javafx.scene.shape; /** * Defines the line join style of a {@code Shape}. * @since JavaFX 2.0 */ public enum StrokeLineJoin { /** * Joins path segments by extending their outside edges until they meet. * * <p> * <img src="doc-files/strokelinejoin-miter.png"/> * </p> */ MITER,//(BasicStroke.JOIN_MITER), /** * Joins path segments by connecting the outer corners * of their wide outlines with a straight segment. * * <p> * <img src="doc-files/strokelinejoin-bevel.png"/> * </p> */ BEVEL,//(BasicStroke.JOIN_BEVEL), /** * Joins path segments by rounding off the corner * at a radius of half the line width. * * <p> * <img src="doc-files/strokelinejoin-round.png"/> * </p> */ ROUND//(BasicStroke.JOIN_ROUND); }
Ms-Dos/Windows
Unix
Write backup
jsp File Browser version 1.2 by
www.vonloesch.de