Revision 37 trunk/libraries/libCq CMS for java.old/src/org/cresques/io/DxfFile.java

View differences:

DxfFile.java
57 57
		public void createText(DxfGroupVector v) throws Exception ;
58 58
		public void createPoint(DxfGroupVector v) throws Exception ;
59 59
		public void createCircle(DxfGroupVector v) throws Exception ;
60
		//public void createArc(DxfGroupVector v) throws Exception ;
60 61
		public void createSolid(DxfGroupVector v) throws Exception ;
61 62
		public Extent getExtent();
62 63
		public void reProject(ReProjection rp);
......
225 226
						entityMaker.createPoint(v);
226 227
					} else if (lastEntity.compareTo("CIRCLE") == 0) {
227 228
						entityMaker.createCircle(v);
229
					/*} else if (lastEntity.compareTo("ARC") == 0) {
230
						entityMaker.createArc(v);*/
228 231
					} else if (lastEntity.compareTo("SOLID") == 0) {
229 232
						entityMaker.createSolid(v);
230 233
					} else

Also available in: Unified diff