mirror of
https://github.com/snowykami/mbcp.git
synced 2025-06-04 19:45:20 +00:00
19 lines
443 B
Python
19 lines
443 B
Python
# -*- coding: utf-8 -*-
|
|
"""
|
|
Copyright (C) 2020-2024 LiteyukiStudio. All Rights Reserved
|
|
|
|
@Time : 2024/8/6 下午12:57
|
|
@Author : snowykami
|
|
@Email : snowykami@outlook.com
|
|
@File : __init__.py.py
|
|
@Software: PyCharm
|
|
"""
|
|
from .angle import AnyAngle
|
|
from .const import *
|
|
from .equation import CurveEquation
|
|
from .line import Line3
|
|
from plane import Plane3
|
|
from .point import Point3
|
|
from .segment import Segment3
|
|
from .vector import Vector3
|