zoukankan      html  css  js  c++  java
  • 解析3D打印切片软件:Cura

    1. 项目编译

    github
    github_wiki: Running Cura from Source

    1.1. 项目依赖

    • Python and PyQt5(QML)

    • Uranium

      Uranium is a Python framework for building 3D-related applications. It's not 3D-printing specific, but contains many useful classes for managing settings, 3D-scenes, and more.

    • CuraEngine(C++)

      CuraEngine is the slicing engine used by Cura. It forms the "back-end" of Cura, and unlike the rest of Cura is written in C++.

    • Arcus

      The Arcus library is used to communicate between Cura and CuraEngine. It is what is responsible for sending your models to the slicer and returning the G-Code to the user interface.

    • Savitar, pynest2d, Charon

      Savitar, pynest2d and libCharon are Python packages developed in-house for Cura. They are only necessary for the Python environment, and used by Cura to speed things up in C or just to separate the development process and have a cleaner API.

    Sub-Dependencies

    • numpy
    • scipy
    • protobuf
    • pyserial
    • Sip: an application to generate Python bindings more easily.
    • Shapely: 使用GEOS库(C++),用于创建新的几何图形与许多坐标。
    • libnest2d: the library for which this library offers CPython bindings, and its dependencies:
      • Clipper(C++): a polygon clipping library.
      • Boost(C++), headers only
  • 相关阅读:
    jquery基础认知
    CentOS6.5下samba服务
    [转载]二叉树查找
    更好的理解索引
    【转载】数据库表空间
    [转载]数据库对象
    数据库schema的简介
    [转载]oracle物化视图
    oracle物化视图
    [转载]oracle位图索引
  • 原文地址:https://www.cnblogs.com/brt2/p/14121437.html
Copyright © 2011-2022 走看看