├── .gitignore ├── English Version └── README.md ├── LICENSE ├── README.md ├── chinese version ├── basic use │ └── README.md └── simple introduction │ ├── README.md │ ├── pythonocc入门指导:1.搭建pythonocc的虚拟开发环境.md │ ├── pythonocc入门指导:2.PyCharm连接pythonOCC开发环境,并运行一个简单实例.md │ ├── pythonocc入门指导:3.创建属于自己的主界面及对话框及安装qtdesigner.md │ └── pythonocc入门指导:4.使用pyinstaller封装成exe文件.md └── some └── new.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kane-LAU/PythonOCC-Tutorial/HEAD/.gitignore -------------------------------------------------------------------------------- /English Version/README.md: -------------------------------------------------------------------------------- 1 | This part is written by English 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kane-LAU/PythonOCC-Tutorial/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kane-LAU/PythonOCC-Tutorial/HEAD/README.md -------------------------------------------------------------------------------- /chinese version/basic use/README.md: -------------------------------------------------------------------------------- 1 | 此处为基础使用 2 | -------------------------------------------------------------------------------- /chinese version/simple introduction/README.md: -------------------------------------------------------------------------------- 1 | 本部分为入门基础指导 2 | -------------------------------------------------------------------------------- /chinese version/simple introduction/pythonocc入门指导:1.搭建pythonocc的虚拟开发环境.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kane-LAU/PythonOCC-Tutorial/HEAD/chinese version/simple introduction/pythonocc入门指导:1.搭建pythonocc的虚拟开发环境.md -------------------------------------------------------------------------------- /chinese version/simple introduction/pythonocc入门指导:2.PyCharm连接pythonOCC开发环境,并运行一个简单实例.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kane-LAU/PythonOCC-Tutorial/HEAD/chinese version/simple introduction/pythonocc入门指导:2.PyCharm连接pythonOCC开发环境,并运行一个简单实例.md -------------------------------------------------------------------------------- /chinese version/simple introduction/pythonocc入门指导:3.创建属于自己的主界面及对话框及安装qtdesigner.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kane-LAU/PythonOCC-Tutorial/HEAD/chinese version/simple introduction/pythonocc入门指导:3.创建属于自己的主界面及对话框及安装qtdesigner.md -------------------------------------------------------------------------------- /chinese version/simple introduction/pythonocc入门指导:4.使用pyinstaller封装成exe文件.md: -------------------------------------------------------------------------------- 1 | 使用pyinstaller封装成exe文件 2 | -------------------------------------------------------------------------------- /some/new.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kane-LAU/PythonOCC-Tutorial/HEAD/some/new.md --------------------------------------------------------------------------------