9 lines
417 B
Python
9 lines
417 B
Python
|
#####################################################
|
||
|
# Copyright (c) Xuanyi Dong [GitHub D-X-Y], 2021.05 #
|
||
|
#####################################################
|
||
|
from .math_base_funcs import QuadraticFunc, CubicFunc, QuarticFunc
|
||
|
from .math_dynamic_funcs import DynamicLinearFunc
|
||
|
from .math_dynamic_funcs import DynamicQuadraticFunc
|
||
|
from .math_adv_funcs import ConstantFunc
|
||
|
from .math_adv_funcs import ComposedSinFunc
|