Skip to content

Commit

Permalink
fix visualization and fix comment
Browse files Browse the repository at this point in the history
  • Loading branch information
true-real-michael committed Nov 4, 2023
1 parent 669be2a commit 861bc44
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions octreelib/grid/grid.py
Original file line number Diff line number Diff line change
Expand Up @@ -161,10 +161,10 @@ def visualize(self, config: VisualizationConfig) -> None:

vertices = []
for pose_number in range(poses_number):
# TODO: Draw full grid, either empty voxels
# TODO: Draw full grid including empty voxels
leaves = self.get_leaf_points(pose_number=pose_number)
for leaf in leaves:
vertices.append(leaf.corners)
vertices.append(leaf.all_corners)

for vertex in vertices:
plot += k3d.lines(
Expand Down

0 comments on commit 861bc44

Please sign in to comment.