/* * 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; /** * The fill rule for determining the interior of the path. * @since JavaFX 2.0 */ public enum FillRule { /** * Defines an even-odd filling rule for determining the interior of a path. * * The even-odd rule specifies that a point lies inside the path if a ray * drawn in any direction from that point to infinity is crossed by path * segments an odd number of times. *
*
*
*
*