1 Star 0 Fork 2

chenyp401/CAM

forked from zzthfut/CAM 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
Triangle.py 467 Bytes
一键复制 编辑 原始数据 按行查看 历史
zzthfut 提交于 2023-07-23 16:57 . 4-6
from GeomBase import Vector3D
class Triangle:
def __init__(self, A, B, C, N=Vector3D(0, 0, 1)):
self.A, self.B, self.C, self.N = A.clone(), B.clone(), C.clone(), N.clone()
self.zs = []
def __str__(self):
print("Triangle:\n A:%s,B:%s,C:%s,N:%s\n" % (self.A, self.B, self.C, self.N))
def zMinPnt(self):
return min([self.A.z, self.B.z, self.C.z])
def zMaxPnt(self):
return max([self.A.z, self.B.z, self.C.z])
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/chenyp401/cam.git
git@gitee.com:chenyp401/cam.git
chenyp401
cam
CAM
master

搜索帮助