fixes for print

This commit is contained in:
Mikayla Dobson
2022-12-19 19:28:14 -06:00
parent 5c0128c3ff
commit 4050df23b6
4 changed files with 44 additions and 43 deletions

View File

@@ -73,9 +73,9 @@ export default class Graph<T> {
}
}
print() {
print(excludeOrphans = false) {
for (let each of this.points) {
each.print();
each.print(excludeOrphans);
}
}
}