/* * 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. * *

* *

*/ MITER,//(BasicStroke.JOIN_MITER), /** * Joins path segments by connecting the outer corners * of their wide outlines with a straight segment. * *

* *

*/ BEVEL,//(BasicStroke.JOIN_BEVEL), /** * Joins path segments by rounding off the corner * at a radius of half the line width. * *

* *

*/ ROUND//(BasicStroke.JOIN_ROUND); }