Revision 4835 trunk/libraries/libFMap/src/com/iver/cit/gvsig/fmap/core/GeneralPathX.java

View differences:

GeneralPathX.java
133 133
     * @see #WIND_NON_ZERO
134 134
     */
135 135
    public GeneralPathX() {
136
	this(WIND_NON_ZERO, INIT_SIZE, INIT_SIZE);
136
	// this(WIND_NON_ZERO, INIT_SIZE, INIT_SIZE);
137
    	this(WIND_EVEN_ODD, INIT_SIZE, INIT_SIZE);
137 138
    }
138 139

  
139 140
    /**
......
193 194
     * @param s the specified <code>Shape</code> object
194 195
     */
195 196
    public GeneralPathX(Shape s) {
196
	this(WIND_NON_ZERO, INIT_SIZE, INIT_SIZE);
197
	// this(WIND_NON_ZERO, INIT_SIZE, INIT_SIZE);
198
    	this(WIND_EVEN_ODD, INIT_SIZE, INIT_SIZE);
197 199
	PathIterator pi = s.getPathIterator(null);
198 200
	setWindingRule(pi.getWindingRule());
199 201
	append(pi, false);

Also available in: Unified diff