use of org.twak.siteplan.campskeleton.PlanSkeleton in project chordatlas by twak.
the class GreebleSkel method findSuperEdge.
private SuperEdge findSuperEdge(Output output, List<Face> chain) {
ColumnProperties col = ((PlanSkeleton) output.skeleton).getDefiningColumn(chain.get(0).edge);
if (col == null)
return null;
Bar bar = col.defBar;
SETag set = ((SETag) GreebleSkel.getTag(bar.tags, SETag.class));
return set == null ? null : set.se;
}
Aggregations