Skip to content

Commit

Permalink
Fix a wrong var name renaming
Browse files Browse the repository at this point in the history
  • Loading branch information
Koyaani committed Jul 4, 2022
1 parent 2638c31 commit 2904575
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion py3dtiles/convert.py
Original file line number Diff line number Diff line change
Expand Up @@ -485,7 +485,7 @@ def get_root_aabb(self, original_aabb):
root_scale = np.array([1, 1, 1])

root_aabb = original_aabb * root_scale
root_spacing = compute_spacing(original_aabb)
root_spacing = compute_spacing(root_aabb)
return root_aabb, root_scale, root_spacing

def convert(self):
Expand Down

0 comments on commit 2904575

Please sign in to comment.