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
fix(datasetattributes): Fix active attribute assignment
This change fixes an issue where setting different attributes after
initializing the dataset causes the active attributes to be retained
from previous dataset state.
fix(vtkviewnode): fix addMissingNodes with enforceOrder
enforceOrder was forcing the dataObjs nodes to be the first children. That had the disadvantage to
make the OpenGLCamera the last item, and slow to be found. Instead, enforceOrder now simply enforce
that the created missing nodes are following each others.
fix #3497
fix(links): clear Cells and Links arrays when polydata is cleared
BuildLinks enforces building cells only if they do not exist. When clearing the polydata, cells and
links must be cleared accordingly. Same when verts, lines, polys and strips arrays are changed
fix#3361