/[classpath]/classpath/java/awt/geom/Area.java
ViewVC logotype

Diff of /classpath/java/awt/geom/Area.java

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.1.2.2 by gnu_andrew, Fri Jan 14 10:24:15 2005 UTC revision 1.1.2.3 by gnu_andrew, Sun Jan 16 02:14:47 2005 UTC
# Line 75  public class Area implements Shape, Clon Line 75  public class Area implements Shape, Clon
75    /**    /**
76     * General numerical precision     * General numerical precision
77     */     */
78    private final double EPSILON = 1E-11;    private static final double EPSILON = 1E-11;
79    
80    /**    /**
81     * recursive subdivision epsilon - (see getRecursionDepth)     * recursive subdivision epsilon - (see getRecursionDepth)
82     */     */
83    private final double RS_EPSILON = 1E-13;    private static final double RS_EPSILON = 1E-13;
84    
85    /**    /**
86     * Snap distance - points within this distance are considered equal     * Snap distance - points within this distance are considered equal
87     */     */
88    private final double PE_EPSILON = 1E-11;    private static final double PE_EPSILON = 1E-11;
89    
90    /**    /**
91     * Segment vectors containing solid areas and holes     * Segment vectors containing solid areas and holes

Legend:
Removed from v.1.1.2.2  
changed lines
  Added in v.1.1.2.3

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26