mbcp/mbcp/mp_math/__init__.py
2024-08-30 13:45:40 +08:00

21 lines
535 B
Python

# -*- coding: utf-8 -*-
"""
本包定义了一些常用的导入,可直接从`mbcp.mp_math`导入使用
导入的类有:
- `AnyAngle`:任意角
- `CurveEquation`:曲线方程
- `Line3`:三维直线
- `Plane3`:三维平面
- `Point3`:三维点
- `Segment3`:三维线段
- `Vector3`:三维向量
"""
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