Translations:Power users hub/14/zh-cn: Difference between revisions

From FreeCAD Documentation
(Created page with "=== 例子 === * 代码片段:搜集了一些FreeCAD的Python代码段,作为你的脚本的配料…… * 画线函数:如...")
 
No edit summary
 
Line 1: Line 1:
=== 例子 ===
!!FUZZY!!=== 例子 ===
* [[Code snippets|代码片段]]:搜集了一些FreeCAD的Python代码段,作为你的脚本的配料……
* [[Code snippets|代码片段]]:搜集了一些FreeCAD的Python代码段,作为你的脚本的配料……
* [[Line drawing function|画线函数]]:如何建造一个简单工具,来画线。
* [[Line drawing function|画线函数]]:如何建造一个简单工具,来画线。
* [[Dialog creation|创建对话]]:如何用Qt设计器来建造对话框,把它们用在FreeCAD里。
* [[Dialog creation|创建对话]]:如何用Qt设计器来建造对话框,把它们用在FreeCAD里。
* [[Embedding FreeCAD|嵌入式FreeCAD]]:在其他应用里,如何载入FreeCAD,作为一个Python模块。
* [[Embedding FreeCAD|嵌入式FreeCAD]]:在其他应用里,如何载入FreeCAD,作为一个Python模块。
* [[Draft Module|绘图模块]]为FreeCAD加入了2D绘图函数。它整个都是用Python写的,所以如果你想写自己的模块,它就是个好例子。
* [[Draft Workbench|绘图模块]]为FreeCAD加入了2D绘图函数。它整个都是用Python写的,所以如果你想写自己的模块,它就是个好例子。
* [[FreeCAD vector math library|FreeCAD向量数学程序库]]:几个很顺手的函数,来操控FreeCAD的向量。这个函数库也包含在绘图模块里面了。
* [[FreeCAD vector math library|FreeCAD向量数学程序库]]:几个很顺手的函数,来操控FreeCAD的向量。这个函数库也包含在绘图模块里面了。

Latest revision as of 07:24, 28 August 2021

Information about message (contribute)
This message has no documentation. If you know where or how this message is used, you can help other translators by adding documentation to this message.
Message definition (Power users hub)
* [[Code snippets|Code snippets]] : A collection of pieces of FreeCAD Python code, to serve as ingredients in your scripts...
* [[Line drawing function|Line drawing function]]: How to build a simple tool to draw lines
* [[Dialog creation|Dialog creation]]: How to construct dialogs with Qt designer, and use them in FreeCAD
* [[Embedding FreeCAD|Embedding FreeCAD]]: How to import FreeCAD as a Python module in other applications
* The [[Draft_Workbench|Draft Workbench]] adds basic 2d drawing functions to freecad. It is written entirely in Python, so it can be a good example if you want to write your own modules.
* [[FreeCAD vector math library|FreeCAD vector math library]] : A couple of handy functions to manipulate FreeCAD vectors. This library is also included in the Draft module.

!!FUZZY!!=== 例子 ===

  • 代码片段:搜集了一些FreeCAD的Python代码段,作为你的脚本的配料……
  • 画线函数:如何建造一个简单工具,来画线。
  • 创建对话:如何用Qt设计器来建造对话框,把它们用在FreeCAD里。
  • 嵌入式FreeCAD:在其他应用里,如何载入FreeCAD,作为一个Python模块。
  • 绘图模块为FreeCAD加入了2D绘图函数。它整个都是用Python写的,所以如果你想写自己的模块,它就是个好例子。
  • FreeCAD向量数学程序库:几个很顺手的函数,来操控FreeCAD的向量。这个函数库也包含在绘图模块里面了。