Skip to content

Theigrams/cnc_interpolation

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

66 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

CNC 插补算法项目

项目结构

cnc_interpolation/
├── core/                       # 核心算法模块
│   ├── __init__.py
│   ├── curve.py                # 曲线类定义 (直线、B样条、Bezier、NURBS)
│   ├── toolpath.py             # 刀具路径类定义
│   ├── look_ahead.py           # 前瞻规划类定义
│   ├── feedrate_profile.py      # 进给率曲线类定义
│   ├── feedrate_scheduler.py   # 进给率调度器类
│   └── interpolator.py         # 插补器类
├── docs/                       # 原理文档
├── examples/                   # 示例代码
├── utils/                      # 工具函数模块
├── tests/                      # 测试模块
├── papers/                     # 第三方论文复现
└── README.md                   # 项目说明

使用说明

添加路径

export PYTHONPATH=$PYTHONPATH:$(pwd)

测试

pytest

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages