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
Right now, each node of the Reeb Graph generated by bdc.py's line sweep (R called on line 175 of bdc.py) has an attribute called cellpts that stores the affine polygon produced by the boustrophedon decomposition of the shape.
We need to "lawnmower sweep" each of these cells as we traverse the reeb graph, skipping over cells that have already been swept.
Down the line, a sweep algorithm would optimize sweeping from starting exit/entry points and sweeping in order. Or, if the cell is strictly convex in multiple directions, we can choose an optimal direction for the line sweep. Or, we can solve an optimization problem to determine the mixture of exit/entry points, sweep direction, etc.
The text was updated successfully, but these errors were encountered:
Right now, each node of the Reeb Graph generated by
bdc.py
'sline sweep
(R
called on line 175 of bdc.py) has an attribute calledcellpts
that stores the affine polygon produced by the boustrophedon decomposition of the shape.We need to "lawnmower sweep" each of these cells as we traverse the reeb graph, skipping over cells that have already been swept.
Down the line, a sweep algorithm would optimize sweeping from starting exit/entry points and sweeping in order. Or, if the cell is strictly convex in multiple directions, we can choose an optimal direction for the line sweep. Or, we can solve an optimization problem to determine the mixture of exit/entry points, sweep direction, etc.
The text was updated successfully, but these errors were encountered: