Laurence Pascall
Results
1
issues of
Laurence Pascall
The following code prints one, as expected: ``` box = trimesh.creation.box(extents=[1,1,1]) box.apply_translation([1e4,1e4,1e4]) print(trimesh.boolean.intersection([box, box]).volume) ``` The following code prints zero, when it should also print one: ``` box = trimesh.creation.box(extents=[1,1,1])...