1
0
mirror of synced 2024-11-28 07:50:51 +01:00
bemaniutils/bemani/format/afp/blend/__init__.py
2021-05-29 22:11:15 +00:00

10 lines
283 B
Python

try:
# If we compiled the faster cython/c++ code, we can use it instead!
from .blendcpp import affine_composite
except ImportError:
# If we didn't, then fall back to the pure python implementation.
from .blend import affine_composite
__all__ = ["affine_composite"]