1 Star 0 Fork 2

chenyp401/CAM

forked from zzthfut/CAM 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
Utility.py 398 Bytes
一键复制 编辑 原始数据 按行查看 历史
zzthfut 提交于 2023-08-14 23:01 . 9-16
import math
def makeListLinear(lists):
outList = []
_makeListLinear(lists, outList)
return outList
def _makeListLinear(inList, outList):
for a in inList:
if not isinstance(a, list):
outList.append(a)
else:
_makeListLinear(a, outList)
def degToRad(deg):
return deg / 180 * math.pi
def radToDeg(rad):
return rad / math.pi * 180
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/chenyp401/cam.git
git@gitee.com:chenyp401/cam.git
chenyp401
cam
CAM
master

搜索帮助