摘要: import os import shutil data = """E670Z""" # 按照 "E" 进行分割,并保留 "E" 在每个元素前面 elements = ["E" + item.strip() for item in data.split("E") if item] print(ele 阅读全文
posted @ 2023-11-19 14:17 Arxu 阅读(19) 评论(0) 推荐(0)
摘要: from cadquery import * import cadquery as cq from math import * def helix(r0, r_eps, p, h, d=0, frac=1e-1): def func(t): if frac < t < 1 - frac: z = h 阅读全文
posted @ 2023-11-19 13:44 Arxu 阅读(100) 评论(0) 推荐(0)