Workbenches/zh-tw: Difference between revisions

From FreeCAD Documentation
(Created page with "Category:User Documentation/zh-tw")
(Updating to match new version of source page)
Line 16: Line 16:
These are the base workbenches bundled with every installation of FreeCAD:
These are the base workbenches bundled with every installation of FreeCAD:


<div class="mw-translate-fuzzy">
* [[Image:Workbench_Arch.svg|24px]] The [[Arch Module/zh-tw|Arch Workbench]] for working with architectural elements.
* [[Image:Workbench_Arch.svg|24px]] The [[Arch Module/zh-tw|Arch Workbench]] for working with architectural elements.
* [[Image:Workbench_Complete.svg|24px]] The [[Complete_Workbench/zh-tw|Complete Workbench]] hold all commands and features from all the modules and workbenches which met certain quality criteria.
* [[Image:Workbench_Complete.svg|24px]] The [[Complete_Workbench/zh-tw|Complete Workbench]] hold all commands and features from all the modules and workbenches which met certain quality criteria.
Line 21: Line 22:
* [[Image:Workbench_Drawing.svg|24px]] The [[Drawing Module/zh-tw|Drawing Workbench]] for displaying your 3D work on a 2D sheet.
* [[Image:Workbench_Drawing.svg|24px]] The [[Drawing Module/zh-tw|Drawing Workbench]] for displaying your 3D work on a 2D sheet.
* [[Image:Workbench_FEM.svg|24px]] The [[FEM Module/zh-tw|FEM Workbench]] provides Finite Element Analysis (FEA) workflow.
* [[Image:Workbench_FEM.svg|24px]] The [[FEM Module/zh-tw|FEM Workbench]] provides Finite Element Analysis (FEA) workflow.
</div>


* [[Image:Workbench_Image.svg|24px]] The [[Image Module/zh-tw|Image Workbench]] for working with bitmap images.
* [[Image:Workbench_Image.svg|24px]] The [[Image Module/zh-tw|Image Workbench]] for working with bitmap images.
Line 34: Line 36:
* [[Image:Workbench_Raytracing.svg|24px]] The [[Raytracing Module/zh-tw|Raytracing Workbench]] for working with ray-tracing (rendering)
* [[Image:Workbench_Raytracing.svg|24px]] The [[Raytracing Module/zh-tw|Raytracing Workbench]] for working with ray-tracing (rendering)


<div class="mw-translate-fuzzy">
* [[Image:Workbench_Reverse_Engineering.svg|24px]] The [[Reverse Engineering Workbench/zh-tw|Reverse Engineering Workbench]] is intended to give you specific tools to convert shapes/solids/meshes into parametric FreeCAD-compatible features. It is still in development.
* [[Image:Workbench_Reverse_Engineering.svg|24px]] The [[Reverse Engineering Workbench/zh-tw|Reverse Engineering Workbench]] is intended to give you specific tools to convert shapes/solids/meshes into parametric FreeCAD-compatible features. It is still in development.
* [[Image:Workbench_Robot.svg|24px]] The [[Robot_Workbench/zh-tw|Robot Workbench]] for studying robot movements.
* [[Image:Workbench_Robot.svg|24px]] The [[Robot_Workbench/zh-tw|Robot Workbench]] for studying robot movements.
Line 39: Line 42:
* [[Image:Workbench_Sketcher.svg|24px]] The [[Sketcher Module/zh-tw|Sketcher Workbench]] for working with geometry-constrained sketches.
* [[Image:Workbench_Sketcher.svg|24px]] The [[Sketcher Module/zh-tw|Sketcher Workbench]] for working with geometry-constrained sketches.
* [[Image:Workbench_Spreadsheet.svg|24px]] The [[Spreadsheet Module/zh-tw|Spreadsheet Workbench]] for creating and manipulating spreadsheet data.
* [[Image:Workbench_Spreadsheet.svg|24px]] The [[Spreadsheet Module/zh-tw|Spreadsheet Workbench]] for creating and manipulating spreadsheet data.
</div>


* [[Image:Workbench_Start.svg|24px]] The [[Start_Workbench/zh-tw|Start Center Workbench]] allows you to quickly jump to one of the most common workbenches.
* [[Image:Workbench_Start.svg|24px]] The [[Start_Workbench/zh-tw|Start Center Workbench]] allows you to quickly jump to one of the most common workbenches.
Line 47: Line 51:
== External workbenches ==
== External workbenches ==


FreeCAD workbenches are easy to program in [http://www.python.org Python], there are therefore many people developing additional workbenches outside of the FreeCAD codebase.
FreeCAD workbenches are easy to program in [[Python]], there are therefore many people developing additional workbenches outside of the FreeCAD main developers.


The [[External workbenches]] page has some information and tutorials about some of them, and the [https://github.com/FreeCAD/FreeCAD-addons FreeCAD Addons] project aims at gathering them and making them easily installable from within FreeCAD.
The [[external workbenches]] page has some information and tutorials on some of them, and the [https://github.com/FreeCAD/FreeCAD-addons FreeCAD Addons] project aims at gathering them and making them easily installable from within FreeCAD.


New workbenches are in development, stay tuned!
New workbenches are in development, stay tuned!

Revision as of 20:51, 11 November 2018

FreeCAD, like many modern design applications such as Revit or CATIA, is based on the concept of Workbench. A workbench can be considered as a set of tools specially grouped for a certain task. In a traditional furniture workshop, you would have a work table for the person who works with wood, another one for the one who works with metal pieces, and maybe a third one for the guy who mounts all the pieces together.

In FreeCAD, the same concept applies. Tools are grouped into workbenches according to the tasks they are related to.

When you switch from one workbench to another, the tools available on the interface change. Toolbars, command bars and possibly other parts of the interface switch to the new workbench, but the contents of your scene doesn't change. You could, for example, start drawing 2D shapes with the Draft Workbench, then work further on them with the Part Workbench.

Note that sometimes a Workbench is referred to as a Module. However, Workbenches and Modules are different entities. A Module is any extension of FreeCAD, while a Workbench is a special GUI configuration that groups some toolbars and menus. Usually every Module contains its own Workbench, hence the cross-use of the name.

Built-in workbenches

The following workbenches are available on every FreeCAD installation:

Workbenches

These are the base workbenches bundled with every installation of FreeCAD:

  • The Arch Workbench for working with architectural elements.
  • The Complete Workbench hold all commands and features from all the modules and workbenches which met certain quality criteria.
  • The Draft Workbench contains 2D tools and basic 2D and 3D CAD operations.
  • The Drawing Workbench for displaying your 3D work on a 2D sheet.
  • The FEM Workbench provides Finite Element Analysis (FEA) workflow.

External workbenches

FreeCAD workbenches are easy to program in Python, there are therefore many people developing additional workbenches outside of the FreeCAD main developers.

The external workbenches page has some information and tutorials on some of them, and the FreeCAD Addons project aims at gathering them and making them easily installable from within FreeCAD.

New workbenches are in development, stay tuned!

Property editor
PartDesign Workbench