11 lines
287 B
Python
11 lines
287 B
Python
from services.scd import SCD
|
|
from services.point.cartesian import PointCartesian
|
|
from services.point.polar import PointPolar
|
|
from services.bottom.V1 import Bottom
|
|
|
|
implemented = {
|
|
"SCD": SCD,
|
|
"PointCartesian": PointCartesian,
|
|
"PointPolar": PointPolar,
|
|
"Bottom": Bottom
|
|
}
|