ThreeDControl

Just some count about point,line,and plane ,easy for myself to use


License
MIT
Install
pip install ThreeDControl==1.3

Documentation

预计定义一些三维中常用的一些工具套件


用法

from ThreeDControl.geometry import XYZ,Plane
point_a = XYZ(1,1,0)
point_b = XYZ(2,2,0)
point_c = XYZ(1,3,0)
plane = Plane(point_a,point_b,point_c) #没有判断点是否在同一条直线

...



更新记录

1.3

- 向量的单位向量返回格式修改

1.1 and 1.2

- 增加一些标注


1.0

- 定义了点和向量,并完善了一些向量的计算(基于numpy中的矩阵算法完成)

- 通过起始点定义折现

- 通过三个点定义平面。用它来完成点到面的投影及距离计算