Skip to content

Commit

Permalink
Fix import path
Browse files Browse the repository at this point in the history
  • Loading branch information
phohenberger committed Jun 28, 2024
1 parent a0e9b76 commit 74c4547
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions znvis/mesh/box.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@

from znvis.transformations.rotation_matrices import rotation_matrix

from .mesh import Mesh
from znvis.mesh import Mesh


@dataclass
Expand All @@ -54,7 +54,7 @@ class Box(Mesh):
depth: float = 1.0

def create_mesh(self) -> o3d.geometry.TriangleMesh:

return o3d.geometry.TriangleMesh.create_box(
width=self.width,
height=self.height,
Expand Down

0 comments on commit 74c4547

Please sign in to comment.