export style for construction entities for edges

pull/973/head
robnee 2021-03-25 20:50:44 -04:00 committed by phkahler
parent 39c18a70b2
commit 53f5e4e7e5
1 changed files with 1 additions and 1 deletions

View File

@ -26,7 +26,7 @@ void Entity::GenerateEdges(SEdgeList *el) {
List<Vector> lv = {}; List<Vector> lv = {};
sb->MakePwlInto(&lv); sb->MakePwlInto(&lv);
for(int j = 1; j < lv.n; j++) { for(int j = 1; j < lv.n; j++) {
el->AddEdge(lv[j-1], lv[j], style.v, i); el->AddEdge(lv[j-1], lv[j], Style::ForEntity(h).v, i);
} }
lv.Clear(); lv.Clear();
} }