mirror of
https://github.com/DragonMinded/bemaniutils.git
synced 2026-05-19 17:38:06 -05:00
10 lines
283 B
Python
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"]
|