Revision 29131 trunk/extensions/extSymbology/src/org/gvsig/symbology/fmap/labeling/placements/MarkerPlacementAroundPoint.java

View differences:

MarkerPlacementAroundPoint.java
203 203

  
204 204
	public boolean isSuitableFor(IPlacementConstraints placementConstraints,
205 205
			int shapeType) {
206
		if (shapeType == FShape.POINT || shapeType == FShape.MULTIPOINT) {// TODO (09/01/08) is this correct? if not fix it also in PlacementManager, PlacementProperties
206
		if ((shapeType%FShape.Z) == FShape.POINT || (shapeType%FShape.Z) == FShape.MULTIPOINT) {// TODO (09/01/08) is this correct? if not fix it also in PlacementManager, PlacementProperties
207 207
			return placementConstraints.isAroundThePoint();
208 208
		}
209 209
		return false;

Also available in: Unified diff