/[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.4 by smarothy, Wed Sep 8 20:10:52 2004 UTC revision 1.5 by mkoch, Tue Nov 16 10:59:34 2004 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.4  
changed lines
  Added in v.1.5

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