Uses of Class
org.osm2world.core.map_data.data.MapSegment

Packages that use MapSegment
org.osm2world.core.map_data.data   
org.osm2world.core.world.modules   
 

Uses of MapSegment in org.osm2world.core.map_data.data
 

Subclasses of MapSegment in org.osm2world.core.map_data.data
 class MapAreaSegment
          segment of a MapArea's outline.
 class MapWaySegment
          line between two nodes in the map data
 

Methods in org.osm2world.core.map_data.data that return types with arguments of type MapSegment
 List<MapSegment> MapNode.getConnectedSegments()
          returns all way segments and area segments connected with this node.
 

Methods in org.osm2world.core.map_data.data with parameters of type MapSegment
 boolean MapSegment.isConnectedTo(MapSegment other)
          returns true if this MapSegment shares a node with another MapSegment
 boolean MapSegment.sharesBothNodes(MapSegment other)
          returns true if this MapSegment shares both nodes with another MapSegment
 

Uses of MapSegment in org.osm2world.core.world.modules
 

Methods in org.osm2world.core.world.modules with parameters of type MapSegment
static boolean TunnelModule.isTunnel(MapSegment segment)