Struct map_model::Perimeter [−][src]
pub struct Perimeter {
pub roads: Vec<RoadSideID>,
pub interior: BTreeSet<RoadID>,
}
Expand description
A sequence of roads in order, beginning and ending at the same place. No “crossings” – tracing along this sequence should geometrically yield a simple polygon.
Fields
roads: Vec<RoadSideID>
interior: BTreeSet<RoadID>
These roads exist entirely within the perimeter
Implementations
Starting at any lane, snap to the nearest side of that road, then begin tracing a single
block, with no interior roads. This will fail if a map boundary is reached. The results are
unusual when crossing the entrance to a tunnel or bridge, and so skip
is used to avoid
tracing there.
This calculates all single block perimeters for the entire map. The resulting list does not cover roads near the map boundary.
Trying to form blocks near railways or cycleways that involve bridges/tunnels often causes overlapping geometry or blocks that’re way too large. These are extremely imperfect heuristics to avoid the worst problems.
A perimeter has the first and last road matching up, but that’s confusing to work with. Temporarily undo that.
Restore the first=last invariant. Methods may temporarily break this, but must restore it before returning.
Try to merge two blocks. Returns true if this is successful, which will only be when the blocks are adjacent, but the merge wouldn’t create an interior “hole”.
Note this may modify both perimeters and still return false
. The modification is just to
rotate the order of the road loop; this doesn’t logically change the perimeter.
TODO Due to https://github.com/a-b-street/abstreet/issues/841, it seems like rotation
sometimes breaks to_block
, so for now, always revert to the original upon failure.
Try to merge all given perimeters. If successful, only one perimeter will be returned.
Perimeters are never “destroyed” – if not merged, they’ll appear in the results. If
stepwise_debug
is true, returns after performing just one merge.
If the perimeter follows any dead-end roads, “collapse” them and instead make the perimeter contain the dead-end.
Consider the perimeters as a graph, with adjacency determined by sharing any road in common.
Partition adjacent perimeters, subject to the predicate. Each partition should produce a
single result with merge_all
.
Assign each perimeter one of num_colors
, such that no two adjacent perimeters share the
same color. May fail. The resulting colors are expressed as [0, num_colors)
.
Trait Implementations
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations
impl RefUnwindSafe for Perimeter
impl UnwindSafe for Perimeter
Blanket Implementations
Mutably borrows from an owned value. Read more
Instruments this type with the provided Span
, returning an
Instrumented
wrapper. Read more
type Output = T
type Output = T
Should always be Self