Changeset 18417 in osm for applications/editors/josm/plugins/osmarender/src/org
- Timestamp:
- 2009-11-02T08:58:53+01:00 (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/osmarender/src/org/openstreetmap/josm/plugins/osmarender/OsmarenderPlugin.java
r18293 r18417 56 56 CollectBackReferencesVisitor backRefsV = new CollectBackReferencesVisitor(Main.main.getCurrentDataSet(), true); 57 57 DataSet fromDataSet = new DataSet(); 58 for (Node n : Main.main.getCurrentDataSet(). nodes) {58 for (Node n : Main.main.getCurrentDataSet().getNodes()) { 59 59 if (n.isUsable() && n.getCoor().isWithin(b)) { 60 fromDataSet. nodes.add(n);60 fromDataSet.addPrimitive(n); 61 61 n.visit(backRefsV); 62 62 }
Note:
See TracChangeset
for help on using the changeset viewer.