You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Aug 17, 2023. It is now read-only.
Copy file name to clipboardexpand all lines: IndoorMapmatching/src/edu/pnu/stem/indoor/feature/CellSpace.java
+17-9
Original file line number
Diff line number
Diff line change
@@ -5,6 +5,7 @@
5
5
importcom.vividsolutions.jts.geom.LineString;
6
6
importcom.vividsolutions.jts.geom.Polygon;
7
7
8
+
importjava.io.Serializable;
8
9
importjava.util.ArrayList;
9
10
10
11
/**
@@ -18,15 +19,14 @@ public class CellSpace {
18
19
privateStringlabel; // Name to represent space
19
20
privatePolygongeom; // Geometry expressing space
20
21
privateArrayList<LineString> doors; // An array that stores the geometry expressing door. The door is assumed to be represented by a LineString
21
-
privateArrayList<LineString> visibilityEdges; // A collection of edges of the graph that represent visibility from point to point in geometry that represents space
22
-
privateArrayList<LineString> door2doorEdges; // An array that stores the path between doors
23
-
privateGeometryFactorygf;
22
+
//private ArrayList<LineString> visibilityEdges; // A collection of edges of the graph that represent visibility from point to point in geometry that represents space
23
+
//private ArrayList<LineString> door2doorEdges; // An array that stores the path between doors
24
+
//private GeometryFactory gf;
24
25
25
26
privateCellSpace() {
26
27
doors = newArrayList<>();
27
-
visibilityEdges = newArrayList<>();
28
-
door2doorEdges = newArrayList<>();
29
-
gf = newGeometryFactory();
28
+
//visibilityEdges = new ArrayList<>();
29
+
//door2doorEdges = new ArrayList<>();
30
30
}
31
31
32
32
publicCellSpace(Polygongeom) {
@@ -35,11 +35,11 @@ public CellSpace(Polygon geom) {
0 commit comments