Closed jacklovell closed 5 years ago
In https://github.com/raysect/source/blob/b7304382469e649ba0dd69c7cc39f0eb9e03eeb5/raysect/primitive/mesh/__init__.pxd, from raysect.primitive.mesh cimport Mesh should be from raysect.primitive.mesh.mesh cimport Mesh.
from raysect.primitive.mesh cimport Mesh
from raysect.primitive.mesh.mesh cimport Mesh
Fixed with PR #300.
In https://github.com/raysect/source/blob/b7304382469e649ba0dd69c7cc39f0eb9e03eeb5/raysect/primitive/mesh/__init__.pxd,
from raysect.primitive.mesh cimport Mesh
should befrom raysect.primitive.mesh.mesh cimport Mesh
.